| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Agenda extends AbstractTool implements ToolInterface |
||
| 13 | { |
||
| 14 | public function getTitle(): string |
||
| 15 | { |
||
| 16 | return 'agenda'; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getIcon(): string |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getLink(): string |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getCategory(): string |
||
| 30 | { |
||
| 31 | return 'authoring'; |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getResourceTypes(): ?array |
||
| 39 | ]; |
||
| 40 | } |
||
| 41 | } |
||
| 42 |