Passed
Pull Request — master (#744)
by Richard
03:43 queued 51s
created
includes/Validation/RequestValidationHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
                 /** @var RequestQueue|false $targetQueue */
249 249
                 $targetQueue = RequestQueue::getById($ban->getTargetQueue(), $this->database);
250 250
 
251
-                if ($targetQueue === false ) {
251
+                if ($targetQueue === false) {
252 252
                     $comment = new Comment();
253 253
                     $comment->setDatabase($this->database);
254 254
                     $comment->setRequest($request->getId());
Please login to merge, or discard this patch.
includes/Helpers/BlacklistHelper.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
         // FIXME: domains!
97 97
         /** @var Domain $domain */
98 98
         $domain = Domain::getById(1, $this->database);
99
-        $this->assign('tbldomain',$domain);
99
+        $this->assign('tbldomain', $domain);
100 100
         $endpoint = $domain->getWikiApiPath();
101
-        $this->assign('tblendpoint',$endpoint);
101
+        $this->assign('tblendpoint', $endpoint);
102 102
         $parameters = array(
103 103
             'action'       => 'titleblacklist',
104 104
             'format'       => 'php',
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $apiResult = $this->httpHelper->get($endpoint, $parameters);
111 111
 
112 112
         $data = unserialize($apiResult);
113
-        $this->assign('tbldata',$data);
113
+        $this->assign('tbldata', $data);
114 114
         return $data['titleblacklist'];
115 115
     }
116 116
 }
117 117
\ No newline at end of file
Please login to merge, or discard this patch.