Completed
Push — master ( a9e9eb...3158a5 )
by Pavel
02:51
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
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @param $inFile
88
-     * @param null $outFile
88
+     * @param string $outFile
89 89
      * @param array $stack
90 90
      * @return array|bool|mixed
91 91
      */
Please login to merge, or discard this patch.