Completed
Push — develop ( c8bccb...27dcf1 )
by Tom
04:44
created
src/N98/Magento/Application/Config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     public function __construct(array $initConfig = array(), $isPharMode = false, OutputInterface $output = null)
66 66
     {
67 67
         $this->initConfig = $initConfig;
68
-        $this->isPharMode = (bool)$isPharMode;
68
+        $this->isPharMode = (bool) $isPharMode;
69 69
         $this->output = $output ?: new NullOutput();
70 70
     }
71 71
 
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     private function getArray($key, $default = array())
266 266
     {
267
-        $result = $this->traverse((array)$key);
267
+        $result = $this->traverse((array) $key);
268 268
         if (null === $result) {
269 269
             return $default;
270 270
         }
Please login to merge, or discard this patch.
src/N98/Util/ProcessArguments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      */
65 65
     private function conditional($key, $value, $separator = '=', $prefix = '--')
66 66
     {
67
-        $buffer = (string)$value;
67
+        $buffer = (string) $value;
68 68
 
69 69
         if (is_string($key) && strlen($key)) {
70 70
             $buffer = $this->conditionalPrefix($key, $prefix) . $this->conditionalValue($value, $separator);
Please login to merge, or discard this patch.