Completed
Pull Request — master (#59)
by Jan Philipp
01:34
created
src/Config/ConfigFileFinder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 
4 4
 namespace Shopware\Psh\Config;
@@ -48,13 +48,13 @@  discard block
 block discarded – undo
48 48
             return $globResult;
49 49
         }
50 50
 
51
-        $overrideFile = array_filter($globResult, function (string $file) {
51
+        $overrideFile = array_filter($globResult, function(string $file) {
52 52
             $extension = pathinfo($file, PATHINFO_EXTENSION);
53 53
 
54 54
             return $extension === 'override';
55 55
         });
56 56
 
57
-        $configFile = array_filter($globResult, function (string $file) {
57
+        $configFile = array_filter($globResult, function(string $file) {
58 58
             $extension = pathinfo($file, PATHINFO_EXTENSION);
59 59
 
60 60
             return $extension !== 'override';
Please login to merge, or discard this patch.