@@ -29,45 +29,45 @@ |
||
29 | 29 | use OCP\Settings\IIconSection; |
30 | 30 | |
31 | 31 | class Section implements IIconSection { |
32 | - /** @var IL10N */ |
|
33 | - private $l; |
|
34 | - /** @var IURLGenerator */ |
|
35 | - private $url; |
|
32 | + /** @var IL10N */ |
|
33 | + private $l; |
|
34 | + /** @var IURLGenerator */ |
|
35 | + private $url; |
|
36 | 36 | |
37 | - /** |
|
38 | - * @param IURLGenerator $url |
|
39 | - * @param IL10N $l |
|
40 | - */ |
|
41 | - public function __construct(IURLGenerator $url, IL10N $l) { |
|
42 | - $this->url = $url; |
|
43 | - $this->l = $l; |
|
44 | - } |
|
37 | + /** |
|
38 | + * @param IURLGenerator $url |
|
39 | + * @param IL10N $l |
|
40 | + */ |
|
41 | + public function __construct(IURLGenerator $url, IL10N $l) { |
|
42 | + $this->url = $url; |
|
43 | + $this->l = $l; |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * {@inheritdoc} |
|
48 | - */ |
|
49 | - public function getID() { |
|
50 | - return 'workflow'; |
|
51 | - } |
|
46 | + /** |
|
47 | + * {@inheritdoc} |
|
48 | + */ |
|
49 | + public function getID() { |
|
50 | + return 'workflow'; |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * {@inheritdoc} |
|
55 | - */ |
|
56 | - public function getName() { |
|
57 | - return $this->l->t('Workflows'); |
|
58 | - } |
|
53 | + /** |
|
54 | + * {@inheritdoc} |
|
55 | + */ |
|
56 | + public function getName() { |
|
57 | + return $this->l->t('Workflows'); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * {@inheritdoc} |
|
62 | - */ |
|
63 | - public function getPriority() { |
|
64 | - return 55; |
|
65 | - } |
|
60 | + /** |
|
61 | + * {@inheritdoc} |
|
62 | + */ |
|
63 | + public function getPriority() { |
|
64 | + return 55; |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - public function getIcon() { |
|
71 | - return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); |
|
72 | - } |
|
67 | + /** |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + public function getIcon() { |
|
71 | + return $this->url->imagePath(Application::APP_ID, 'app-dark.svg'); |
|
72 | + } |
|
73 | 73 | } |