Passed
Push — master ( 777291...7e229a )
by Julius
13:18 queued 12s
created
apps/settings/lib/Sections/Personal/Calendar.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -29,27 +29,27 @@
 block discarded – undo
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('core', 'caldav/time.svg');
42
-	}
40
+    public function getIcon(): string {
41
+        return $this->urlGenerator->imagePath('core', 'caldav/time.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
 }
Please login to merge, or discard this patch.