Passed
Push — master ( 8ad6a2...629a1e )
by Jérémy
05:04 queued 02:09
created
src/Kernel/Kernel.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     protected function loadEnvironment(): void
65 65
     {
66 66
         (new Dotenv())->populate(['APP_ENV' => $this->getEnvironment()]);
67
-        (new Dotenv())->loadEnv($this->getProjectDir() . '/.env');
67
+        (new Dotenv())->loadEnv($this->getProjectDir().'/.env');
68 68
     }
69 69
 
70 70
     protected function loadDefinitions(): void
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $internal_loader =
78 78
             new PhpFileLoader(
79 79
                 $this->container,
80
-                new FileLocator(__DIR__ . '/../../config')
80
+                new FileLocator(__DIR__.'/../../config')
81 81
             );
82 82
 
83 83
         $personal_loader =
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
     protected function loadExtensions(): void
99 99
     {
100
-        $extension_file_path = $this->getConfigDir() . '/extensions.php';
100
+        $extension_file_path = $this->getConfigDir().'/extensions.php';
101 101
         if (!file_exists($extension_file_path)) {
102 102
             return;
103 103
         }
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         }
129 129
 
130 130
         $dir = $root_dir = \dirname($dir);
131
-        while (!file_exists($dir . '/composer.lock')) {
131
+        while (!file_exists($dir.'/composer.lock')) {
132 132
             if ($dir === \dirname($dir)) {
133 133
                 return $root_dir;
134 134
             }
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
     public function getConfigDir(): string
148 148
     {
149
-        return $this->project_dir . '/config';
149
+        return $this->project_dir.'/config';
150 150
     }
151 151
 
152 152
     public function getEnvironment(): string
Please login to merge, or discard this patch.