Passed
Pull Request — master (#744)
by Richard
07:34
created
includes/DataObjects/Domain.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,8 @@
 block discarded – undo
63 63
     }
64 64
 
65 65
 
66
-    public static function getAll(PdoDatabase $database) {
66
+    public static function getAll(PdoDatabase $database)
67
+    {
67 68
         $statement = $database->prepare("SELECT * FROM domain;");
68 69
         $statement->execute();
69 70
 
Please login to merge, or discard this patch.
includes/Pages/PageDomainSwitch.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,8 @@
 block discarded – undo
51 51
 
52 52
         if ($this->barrierTest($route[1], $currentUser, $route[0])) {
53 53
             $this->redirect('/' . $referrer);
54
-        } else {
54
+        }
55
+        else {
55 56
             $this->redirect('/');
56 57
         }
57 58
     }
Please login to merge, or discard this patch.
includes/Pages/PageViewRequest.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@
 block discarded – undo
273 273
         try {
274 274
             $blacklistData = $this->getBlacklistHelper()->isBlacklisted($request->getName());
275 275
             
276
-        } 
276
+        }
277 277
         catch (Exception $ex) {
278 278
             $blacklistData = $ex->getMessage();
279 279
         }
Please login to merge, or discard this patch.