| Total Complexity | 6 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class User extends AbstractTool implements ToolInterface |
||
| 14 | { |
||
| 15 | public function getName(): string |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getNameToShow(): string |
||
| 21 | { |
||
| 22 | return 'Users'; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getIcon(): string |
||
| 26 | { |
||
| 27 | return 'mdi-user'; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getLink(): string |
||
| 31 | { |
||
| 32 | return '/'; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getCategory(): string |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getResourceTypes(): ?array |
||
| 46 | ]; |
||
| 47 | } |
||
| 48 | } |
||
| 49 |