| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ToolIntro extends AbstractTool implements ToolInterface |
||
| 12 | { |
||
| 13 | public function getName(): string |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getIcon(): string |
||
| 19 | { |
||
| 20 | return 'mdi-certificate'; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getLink(): string |
||
| 24 | { |
||
| 25 | return '/resources/ctoolintro'; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getCategory(): string |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getResourceTypes(): ?array |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |