Completed
Push — master ( 5f8cc7...76d085 )
by Pavel
02:39
created
src/IncenteevParametersProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
 
108 108
     protected function procesEnvironmentalVariables(array $parameters)
109 109
     {
110
-        return array_map(function ($item) {
110
+        return array_map(function($item) {
111 111
             $item = trim($item);
112 112
             if (substr(strtolower($item), 0, 5) === "%env(" && substr(strtolower($item), -2) == ')%') {
113 113
                 $envName = substr(trim($item), 5);
Please login to merge, or discard this patch.
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.