Completed
Push — compiler ( ff11d9...eb0a0d )
by Akihito
01:32
created
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
         $bootstrapClass = class_exists($appBootstrap) ? $appBootstrap : Bootstrap::class;
53 53
         $_SERVER['HTTP_IF_NONE_MATCH'] = '0';
54 54
         $_SERVER['REQUEST_URI'] = '/';
Please login to merge, or discard this patch.
src/Compiler/Bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function __invoke(string $context, array $globals, array $server): int
31 31
     {
32
-        $tmpDir = dirname(__DIR__, 2) . '/tests/tmp';
32
+        $tmpDir = dirname(__DIR__, 2).'/tests/tmp';
33 33
         $app = Injector::getInstance('BEAR\Package\Compiler', $context, $tmpDir)->getInstance(AppInterface::class);
34 34
         assert($app instanceof App);
35 35
         if ($app->httpCache->isNotModified($server)) {
Please login to merge, or discard this patch.