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