@@ -14,25 +14,25 @@ |
||
14 | 14 | |
15 | 15 | class ArtificialIntelligence implements IIconSection { |
16 | 16 | |
17 | - public function __construct( |
|
18 | - private IL10N $l, |
|
19 | - private IURLGenerator $urlGenerator, |
|
20 | - ) { |
|
21 | - } |
|
22 | - |
|
23 | - public function getIcon(): string { |
|
24 | - return $this->urlGenerator->imagePath('settings', 'ai.svg'); |
|
25 | - } |
|
26 | - |
|
27 | - public function getID(): string { |
|
28 | - return 'ai'; |
|
29 | - } |
|
30 | - |
|
31 | - public function getName(): string { |
|
32 | - return $this->l->t('Assistant'); |
|
33 | - } |
|
34 | - |
|
35 | - public function getPriority(): int { |
|
36 | - return 40; |
|
37 | - } |
|
17 | + public function __construct( |
|
18 | + private IL10N $l, |
|
19 | + private IURLGenerator $urlGenerator, |
|
20 | + ) { |
|
21 | + } |
|
22 | + |
|
23 | + public function getIcon(): string { |
|
24 | + return $this->urlGenerator->imagePath('settings', 'ai.svg'); |
|
25 | + } |
|
26 | + |
|
27 | + public function getID(): string { |
|
28 | + return 'ai'; |
|
29 | + } |
|
30 | + |
|
31 | + public function getName(): string { |
|
32 | + return $this->l->t('Assistant'); |
|
33 | + } |
|
34 | + |
|
35 | + public function getPriority(): int { |
|
36 | + return 40; |
|
37 | + } |
|
38 | 38 | } |