Passed
Push — master ( eb9f53...b38b61 )
by Jan-Christoph
09:23 queued 10s
created
apps/workflowengine/lib/Settings/Section.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -29,45 +29,45 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.