Passed
Push — develop ( 4d677f...1eab77 )
by Brent
02:34
created
src/Stitcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,6 @@
 block discarded – undo
8 8
 use Symfony\Component\DependencyInjection\ContainerBuilder;
9 9
 use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
10 10
 use Symfony\Component\Filesystem\Filesystem;
11
-use Symfony\Component\Finder\Finder;
12
-use Symfony\Component\Finder\SplFileInfo;
13 11
 use Symfony\Component\Yaml\Yaml;
14 12
 
15 13
 /**
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @return null|SplFileInfo
44 44
      */
45
-    public static function getConfigFile(string $path) : ?SplFileInfo {
45
+    public static function getConfigFile(string $path) : ? SplFileInfo {
46 46
         $pathParts = explode('/', $path);
47 47
         $configFileName = array_pop($pathParts);
48 48
         $configPath = implode('/', $pathParts) . '/';
Please login to merge, or discard this patch.