| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Mobidico extends AbstractTool implements ToolInterface |
||
| 10 | { |
||
| 11 | public function getName(): string |
||
| 12 | { |
||
| 13 | return 'mobidico'; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function getNameToShow(): string |
||
| 17 | { |
||
| 18 | return 'Mobidico'; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getIcon(): string |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getLink(): string |
||
| 27 | { |
||
| 28 | return '/plugin/mobidico/start.php'; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getCategory(): string |
||
| 32 | { |
||
| 33 | return 'plugin'; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getResourceTypes(): ?array |
||
| 39 | ]; |
||
| 40 | } |
||
| 41 | } |
||
| 42 |