Test Failed
Branch master (8c7c00)
by Thierry
01:50 queued 15s
created
src/Utils/Config/Config.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,8 +161,7 @@
 block discarded – undo
161 161
             {
162 162
                 $iNextDotPos = strpos($sName, '.', $sPrefixLen);
163 163
                 $sOptionName = $iNextDotPos === false ?
164
-                    substr($sName, $sPrefixLen) :
165
-                    substr($sName, $sPrefixLen, $iNextDotPos - $sPrefixLen);
164
+                    substr($sName, $sPrefixLen) : substr($sName, $sPrefixLen, $iNextDotPos - $sPrefixLen);
166 165
                 $aOptions[$sOptionName] = $sPrefix . $sOptionName;
167 166
             }
168 167
         }
Please login to merge, or discard this patch.
src/Response/Response.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,8 +268,7 @@
 block discarded – undo
268 268
         }
269 269
 
270 270
         $this->aCommands = ($bBefore) ?
271
-            array_merge($aCommands, $this->aCommands) :
272
-            array_merge($this->aCommands, $aCommands);
271
+            array_merge($aCommands, $this->aCommands) : array_merge($this->aCommands, $aCommands);
273 272
     }
274 273
 
275 274
     /**
Please login to merge, or discard this patch.
src/Request/Support/CallableObject.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -312,8 +312,7 @@
 block discarded – undo
312 312
             $reflectionMethod = $this->xReflectionClass->getMethod($sMethodName);
313 313
             $reflectionMethod->setAccessible(true); // Make it possible to call protected methods
314 314
             $xRegisteredObject = $this->getRegisteredObject();
315
-            (!$xResponse) ? $reflectionMethod->invoke($xRegisteredObject) :
316
-                $reflectionMethod->invoke($xRegisteredObject, $xResponse);
315
+            (!$xResponse) ? $reflectionMethod->invoke($xRegisteredObject) : $reflectionMethod->invoke($xRegisteredObject, $xResponse);
317 316
         }
318 317
     }
319 318
 
Please login to merge, or discard this patch.