@@ -29,27 +29,27 @@ |
||
| 29 | 29 | |
| 30 | 30 | class Calendar implements IIconSection { |
| 31 | 31 | |
| 32 | - private IL10N $l; |
|
| 33 | - private IURLGenerator $urlGenerator; |
|
| 32 | + private IL10N $l; |
|
| 33 | + private IURLGenerator $urlGenerator; |
|
| 34 | 34 | |
| 35 | - public function __construct(IL10N $l, IURLGenerator $urlGenerator) { |
|
| 36 | - $this->l = $l; |
|
| 37 | - $this->urlGenerator = $urlGenerator; |
|
| 38 | - } |
|
| 35 | + public function __construct(IL10N $l, IURLGenerator $urlGenerator) { |
|
| 36 | + $this->l = $l; |
|
| 37 | + $this->urlGenerator = $urlGenerator; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - public function getIcon(): string { |
|
| 41 | - return $this->urlGenerator->imagePath('dav', 'calendar.svg'); |
|
| 42 | - } |
|
| 40 | + public function getIcon(): string { |
|
| 41 | + return $this->urlGenerator->imagePath('dav', 'calendar.svg'); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - public function getID(): string { |
|
| 45 | - return 'calendar'; |
|
| 46 | - } |
|
| 44 | + public function getID(): string { |
|
| 45 | + return 'calendar'; |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | - public function getName(): string { |
|
| 49 | - return $this->l->t('Calendar'); |
|
| 50 | - } |
|
| 48 | + public function getName(): string { |
|
| 49 | + return $this->l->t('Calendar'); |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - public function getPriority(): int { |
|
| 53 | - return 50; |
|
| 54 | - } |
|
| 52 | + public function getPriority(): int { |
|
| 53 | + return 50; |
|
| 54 | + } |
|
| 55 | 55 | } |