Passed
Push — master ( 4c8cfd...97d173 )
by Morris
12:40 queued 11s
created
apps/workflowengine/lib/Settings/Section.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -28,45 +28,45 @@
 block discarded – undo
28 28
 use OCP\Settings\IIconSection;
29 29
 
30 30
 class Section implements IIconSection {
31
-	/** @var IL10N */
32
-	private $l;
33
-	/** @var IURLGenerator */
34
-	private $url;
31
+    /** @var IL10N */
32
+    private $l;
33
+    /** @var IURLGenerator */
34
+    private $url;
35 35
 
36
-	/**
37
-	 * @param IURLGenerator $url
38
-	 * @param IL10N $l
39
-	 */
40
-	public function __construct(IURLGenerator $url, IL10N $l) {
41
-		$this->url = $url;
42
-		$this->l = $l;
43
-	}
36
+    /**
37
+     * @param IURLGenerator $url
38
+     * @param IL10N $l
39
+     */
40
+    public function __construct(IURLGenerator $url, IL10N $l) {
41
+        $this->url = $url;
42
+        $this->l = $l;
43
+    }
44 44
 
45
-	/**
46
-	 * {@inheritdoc}
47
-	 */
48
-	public function getID() {
49
-		return 'workflow';
50
-	}
45
+    /**
46
+     * {@inheritdoc}
47
+     */
48
+    public function getID() {
49
+        return 'workflow';
50
+    }
51 51
 
52
-	/**
53
-	 * {@inheritdoc}
54
-	 */
55
-	public function getName() {
56
-		return $this->l->t('Tag management');
57
-	}
52
+    /**
53
+     * {@inheritdoc}
54
+     */
55
+    public function getName() {
56
+        return $this->l->t('Tag management');
57
+    }
58 58
 
59
-	/**
60
-	 * {@inheritdoc}
61
-	 */
62
-	public function getPriority() {
63
-		return 55;
64
-	}
59
+    /**
60
+     * {@inheritdoc}
61
+     */
62
+    public function getPriority() {
63
+        return 55;
64
+    }
65 65
 
66
-	/**
67
-	 * {@inheritdoc}
68
-	 */
69
-	public function getIcon() {
70
-		return $this->url->imagePath('core', 'actions/tag.svg');
71
-	}
66
+    /**
67
+     * {@inheritdoc}
68
+     */
69
+    public function getIcon() {
70
+        return $this->url->imagePath('core', 'actions/tag.svg');
71
+    }
72 72
 }
Please login to merge, or discard this patch.