Test Failed
Pull Request — master (#11)
by Evgeniy
02:47
created
public/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 // PHP built-in server routing.
8 8
 if (PHP_SAPI === 'cli-server') {
9 9
     // Serve static files as is.
10
-    if (is_file(__DIR__ . $_SERVER["REQUEST_URI"])) {
10
+    if (is_file(__DIR__.$_SERVER["REQUEST_URI"])) {
11 11
         return false;
12 12
     }
13 13
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     $_SERVER['SCRIPT_NAME'] = '/index.php';
16 16
 }
17 17
 
18
-require_once dirname(__DIR__) . '/vendor/autoload.php';
18
+require_once dirname(__DIR__).'/vendor/autoload.php';
19 19
 
20 20
 $runner = new ApplicationRunner();
21 21
 // Development mode:
Please login to merge, or discard this patch.
src/ApplicationRunner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@
 block discarded – undo
110 110
 
111 111
     private function shouldRebuildConfigs(): bool
112 112
     {
113
-        $sourceDirectory = dirname(__DIR__) . '/config/';
114
-        $buildDirectory = dirname(__DIR__) . '/runtime/build/config/';
113
+        $sourceDirectory = dirname(__DIR__).'/config/';
114
+        $buildDirectory = dirname(__DIR__).'/runtime/build/config/';
115 115
 
116 116
         if (FileHelper::isEmptyDirectory($buildDirectory)) {
117 117
             return true;
Please login to merge, or discard this patch.