Completed
Push — master ( 32da9f...5da014 )
by Sebastian
07:46
created
src/Configuration/Bootstrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         if (!empty($filename)) {
42 42
             $pathToFile = stream_resolve_include_path($filename);
43 43
             if (!$pathToFile || !is_readable($pathToFile)) {
44
-                throw new Exception(sprintf('Cannot open bootstrap file "%s".' . PHP_EOL, $filename));
44
+                throw new Exception(sprintf('Cannot open bootstrap file "%s".'.PHP_EOL, $filename));
45 45
             }
46 46
             require $pathToFile;
47 47
         }
Please login to merge, or discard this patch.
src/Configuration/Loader/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         $bs    = $bootstrapper ?? new Bootstrapper();
45 45
         $ext   = pathinfo($filename, PATHINFO_EXTENSION);
46 46
         $type  = isset(self::$extToLoaderMap[$ext]) ? self::$extToLoaderMap[$ext] : self::DEFAULT_LOADER;
47
-        $class = '\\phpbu\\App\\Configuration\\Loader\\' . $type;
47
+        $class = '\\phpbu\\App\\Configuration\\Loader\\'.$type;
48 48
 
49 49
         return new $class($filename, $bs);
50 50
     }
Please login to merge, or discard this patch.