Completed
Push — master ( e221c0...5a5b2e )
by Matze
05:22
created
src/DependencyInjection/Rebuild.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
 
51 51
         $appFinder = new Finder();
52 52
         $appFinder->directories()
53
-            ->in([ROOT . 'vendor/brainexe/'])
53
+            ->in([ROOT.'vendor/brainexe/'])
54 54
             ->depth("<=1")
55 55
             ->name('src');
56 56
 
57
-        $annotationLoader->load(ROOT . 'src/');
57
+        $annotationLoader->load(ROOT.'src/');
58 58
 
59 59
         foreach ($appFinder as $dir) {
60 60
             /** @var SplFileInfo $dir */
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
         $debug         = $container->getParameter('debug');
71 71
         $randomId      = mt_rand();
72 72
         $className     = sprintf('dic_%d', $randomId);
73
-        $containerFile = ROOT . 'cache/dic.php';
74
-        $versionFile   = ROOT . 'cache/dic.txt';
73
+        $containerFile = ROOT.'cache/dic.php';
74
+        $versionFile   = ROOT.'cache/dic.txt';
75 75
 
76 76
         $dumper = new PhpDumper($container);
77 77
         $dumper->setProxyDumper(new ProxyDumper());
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         @chmod($versionFile, 0777);
88 88
 
89 89
         file_put_contents(
90
-            ROOT . 'cache/config.json',
90
+            ROOT.'cache/config.json',
91 91
             json_encode(
92 92
                 $container->getParameterBag()->all(),
93 93
                 JSON_PRETTY_PRINT
Please login to merge, or discard this patch.