Passed
Push — master ( 47e725...6f4ea7 )
by Morris
11:19 queued 10s
created
apps/dav/lib/CalDAV/Activity/Setting/CalDAVSetting.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -30,21 +30,21 @@
 block discarded – undo
30 30
 use OCP\IL10N;
31 31
 
32 32
 abstract class CalDAVSetting extends ActivitySettings {
33
-	/** @var IL10N */
34
-	protected $l;
35
-
36
-	/**
37
-	 * @param IL10N $l
38
-	 */
39
-	public function __construct(IL10N $l) {
40
-		$this->l = $l;
41
-	}
42
-
43
-	public function getGroupIdentifier() {
44
-		return 'calendar';
45
-	}
46
-
47
-	public function getGroupName() {
48
-		return $this->l->t('Calendar and tasks');
49
-	}
33
+    /** @var IL10N */
34
+    protected $l;
35
+
36
+    /**
37
+     * @param IL10N $l
38
+     */
39
+    public function __construct(IL10N $l) {
40
+        $this->l = $l;
41
+    }
42
+
43
+    public function getGroupIdentifier() {
44
+        return 'calendar';
45
+    }
46
+
47
+    public function getGroupName() {
48
+        return $this->l->t('Calendar and tasks');
49
+    }
50 50
 }
Please login to merge, or discard this patch.
apps/settings/lib/Controller/ReasonsController.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@
 block discarded – undo
31 31
 
32 32
 class ReasonsController extends Controller {
33 33
 
34
-	/**
35
-	 * @NoCSRFRequired
36
-	 * @NoAdminRequired
37
-	 * @NoSubAdminRequired
38
-	 */
39
-	public function getPdf() {
40
-		$data = file_get_contents(__DIR__ . '/../../data/Reasons to use Nextcloud.pdf');
41
-
42
-		$resp = new DataDisplayResponse($data);
43
-		$resp->addHeader('Content-Type', 'application/pdf');
44
-
45
-		return $resp;
46
-	}
34
+    /**
35
+     * @NoCSRFRequired
36
+     * @NoAdminRequired
37
+     * @NoSubAdminRequired
38
+     */
39
+    public function getPdf() {
40
+        $data = file_get_contents(__DIR__ . '/../../data/Reasons to use Nextcloud.pdf');
41
+
42
+        $resp = new DataDisplayResponse($data);
43
+        $resp->addHeader('Content-Type', 'application/pdf');
44
+
45
+        return $resp;
46
+    }
47 47
 }
Please login to merge, or discard this patch.