Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class Portfolio extends AbstractTool implements ToolInterface |
||
13 | { |
||
14 | public function getTitle(): string |
||
15 | { |
||
16 | return 'portfolio'; |
||
17 | } |
||
18 | |||
19 | public function getCategory(): string |
||
20 | { |
||
21 | return 'interaction'; |
||
22 | } |
||
23 | |||
24 | public function getLink(): string |
||
25 | { |
||
26 | return '/main/portfolio/index.php'; |
||
27 | } |
||
28 | |||
29 | public function getIcon(): string |
||
32 | } |
||
33 | |||
34 | public function getResourceTypes(): ?array |
||
38 | ]; |
||
39 | } |
||
40 | } |
||
41 |