| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | class Calendar implements IIconSection { |
||
| 31 | |||
| 32 | private IL10N $l; |
||
| 33 | private IURLGenerator $urlGenerator; |
||
| 34 | |||
| 35 | public function __construct(IL10N $l, IURLGenerator $urlGenerator) { |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getIcon(): string { |
||
| 41 | return $this->urlGenerator->imagePath('core', 'caldav/time.svg'); |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getID(): string { |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getName(): string { |
||
| 50 | } |
||
| 51 | |||
| 52 | public function getPriority(): int { |
||
| 56 |