Completed
Push — compiler ( d6bb7f...294fd1 )
by Akihito
01:45
created
src/Compiler/Bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function __invoke(string $appName, string $context, array $globals, array $server): int
40 40
     {
41
-        $injector =  Injector::getInstance($appName, $context, $this->appDir);
41
+        $injector = Injector::getInstance($appName, $context, $this->appDir);
42 42
         $app = $injector->getInstance(AppInterface::class);
43 43
         $injector->getInstance(HttpCacheInterface::class);
44 44
         $router = $injector->getInstance(RouterInterface::class);
Please login to merge, or discard this patch.
src/Compiler/FakeRun.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function __invoke(): void
50 50
     {
51
-        $appBootstrap = $this->appMeta->name . '\Bootstrap';
51
+        $appBootstrap = $this->appMeta->name.'\Bootstrap';
52 52
         $bootstrap = class_exists($appBootstrap) ? new $appBootstrap() : new Bootstrap($this->appMeta);
53 53
         $_SERVER['HTTP_IF_NONE_MATCH'] = '0';
54 54
         $_SERVER['REQUEST_URI'] = '/';
Please login to merge, or discard this patch.