Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class CourseHomePage extends AbstractTool implements ToolInterface |
||
10 | { |
||
11 | public function getName(): string |
||
12 | { |
||
13 | return 'course_homepage'; |
||
14 | } |
||
15 | |||
16 | public function getLink(): string |
||
19 | } |
||
20 | |||
21 | public function getIcon(): string |
||
24 | } |
||
25 | |||
26 | public function getCategory(): string |
||
27 | { |
||
28 | return 'admin'; |
||
29 | } |
||
30 | |||
31 | public function getResourceTypes(): ?array |
||
34 | ]; |
||
35 | } |
||
37 |