Failed Conditions
Push — multiproject/domainsettings ( c67fcc )
by Simon
04:29
created
includes/Pages/RequestAction/PageCustomClose.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -352,7 +352,7 @@
 block discarded – undo
352 352
         $creationTaskClass = null;
353 353
 
354 354
         if ($action === self::CREATE_OAUTH) {
355
-            if(!$canOauthCreate) {
355
+            if (!$canOauthCreate) {
356 356
                 throw new AccessDeniedException($this->getSecurityManager());
357 357
             }
358 358
 
Please login to merge, or discard this patch.
includes/Pages/PageExpandedRequestList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     protected function main()
29 29
     {
30
-        if(WebRequest::getString('queue') === null) {
30
+        if (WebRequest::getString('queue') === null) {
31 31
             $this->redirect('');
32 32
             return;
33 33
         }
Please login to merge, or discard this patch.
includes/Pages/PageMain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
         $requestsByQueue = $search->fetchByQueue(array_keys($queuesById));
184 184
 
185 185
         foreach ($requestsByQueue as $queueId => $queueData) {
186
-            if($queueData['count'] > 0 || $queuesById[$queueId]->isEnabled()) {
186
+            if ($queueData['count'] > 0 || $queuesById[$queueId]->isEnabled()) {
187 187
                 $requestSectionData[$queuesById[$queueId]->getHeader()] = array(
188 188
                     'requests' => $this->prepareRequestData($queueData['data']),
189 189
                     'total'    => $queueData['count'],
Please login to merge, or discard this patch.
includes/Pages/PageListFlaggedComments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             if ($object->getVisibility() == 'requester' || $object->getVisibility() == 'user') {
49 49
                 $this->copyCommentData($object, $data, $database);
50 50
             }
51
-            elseif($object->getVisibility() == 'admin') {
51
+            elseif ($object->getVisibility() == 'admin') {
52 52
                 if ($seeRestrictedComments) {
53 53
                     $this->copyCommentData($object, $data, $database);
54 54
                 }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
                     $data['hidden'] = true;
57 57
                 }
58 58
             }
59
-            elseif($object->getVisibility() == 'checkuser') {
59
+            elseif ($object->getVisibility() == 'checkuser') {
60 60
                 if ($seeCheckuserComments) {
61 61
                     $this->copyCommentData($object, $data, $database);
62 62
                 }
Please login to merge, or discard this patch.
includes/Helpers/LogHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -407,7 +407,7 @@
 block discarded – undo
407 407
                 /** @var Domain $domain */
408 408
                 $domain = Domain::getById($objectId, $database);
409 409
 
410
-                if($domain === false ){
410
+                if ($domain === false) {
411 411
                     return "Domain #{$objectId}";
412 412
                 }
413 413
 
Please login to merge, or discard this patch.
includes/Validation/RequestValidationHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         }
112 112
 
113 113
         // name is too long
114
-        if (mb_strlen(trim($request->getName())) > 500 ) {
114
+        if (mb_strlen(trim($request->getName())) > 500) {
115 115
             $errorList[ValidationError::NAME_EMPTY] = new ValidationError(ValidationError::NAME_TOO_LONG);
116 116
         }
117 117
 
@@ -248,7 +248,7 @@  discard block
 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.