Completed
Pull Request — master (#84)
by Nick
01:52
created
src/ScriptRuntime/ProcessEnvironment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * @param array $constants
43 43
      * @param array $variables
44 44
      * @param array $templates
45
-     * @param array $dotenvPaths
45
+     * @param ScriptPath[] $dotenvPaths
46 46
      */
47 47
     public function __construct(array $constants, array $variables, array $templates, array $dotenvPaths)
48 48
     {
Please login to merge, or discard this patch.
src/Config/YamlConfigFileLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     {
159 159
         $paths = $this->extractData($key, $rawConfigData, []);
160 160
 
161
-        return array_map(function ($path) use ($file) {
161
+        return array_map(function($path) use ($file) {
162 162
             return $this->fixPath($path, $file);
163 163
         }, $paths);
164 164
     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     {
173 173
         $templates = $this->extractData(self::KEY_TEMPLATES, $rawConfigData, []);
174 174
 
175
-        return array_map(function ($template) use ($file) {
175
+        return array_map(function($template) use ($file) {
176 176
             $template['source'] = $this->fixPath($template['source'], $file);
177 177
             $template['destination'] = $this->makeAbsolutePath($file, $template['destination']);
178 178
 
Please login to merge, or discard this patch.