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