Passed
Push — master ( 41d5a5...e82656 )
by Thierry
03:02
created
src/Response/Traits/CommandTrait.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
     public function appendCommands(array $aCommands, bool $bBefore = false)
58 58
     {
59 59
         $this->aCommands = ($bBefore) ?
60
-            array_merge($aCommands, $this->aCommands) :
61
-            array_merge($this->aCommands, $aCommands);
60
+            array_merge($aCommands, $this->aCommands) : array_merge($this->aCommands, $aCommands);
62 61
     }
63 62
 
64 63
     /**
Please login to merge, or discard this patch.
src/Response/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
      */
141 141
     public function bag(string $sName): DataBagContext
142 142
     {
143
-        return $this->plugin('bags')->bag($sName);;
143
+        return $this->plugin('bags')->bag($sName); ;
144 144
     }
145 145
 
146 146
     /**
Please login to merge, or discard this patch.
src/Response/Manager/ResponseManager.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,8 +173,7 @@
 block discarded – undo
173 173
      */
174 174
     public function getContentType(): string
175 175
     {
176
-        return empty($this->sCharacterEncoding) ? $this->xResponse->getContentType() :
177
-            $this->xResponse->getContentType() . '; charset="' . $this->sCharacterEncoding . '"';
176
+        return empty($this->sCharacterEncoding) ? $this->xResponse->getContentType() : $this->xResponse->getContentType() . '; charset="' . $this->sCharacterEncoding . '"';
178 177
     }
179 178
 
180 179
     /**
Please login to merge, or discard this patch.