Completed
Push — master ( ed03af...ae5b1a )
by Pavel
01:59
created
src/FileHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function getArgumentValue($name)
53 53
     {
54
-        return array_reduce($this->arguments, function ($carry, $item) use ($name) {
54
+        return array_reduce($this->arguments, function($carry, $item) use ($name) {
55 55
             if (substr(strtolower($item), 0, strlen($name) + 2) == '--' . $name) {
56 56
                 $val = explode('=', $item);
57 57
                 return trim($val[1]);
Please login to merge, or discard this patch.
src/IncenteevParametersProcessor.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
         }
113 113
 
114 114
         if (!is_null($outFile)) {
115
-	        ksort($values[self::$PARAMETER_KEY]);
115
+            ksort($values[self::$PARAMETER_KEY]);
116 116
             $this->fs->dumpFile($outFile, Yaml::dump($values));
117 117
         } else {
118 118
             return $values;
Please login to merge, or discard this patch.