Skip to content

Commit c9af6ae

Browse files
committed
fix writes to static $kernel property
1 parent a04950d commit c9af6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Test/KernelTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected static function bootKernel(array $options = [])
7777

7878
$kernel = static::createKernel($options);
7979
$kernel->boot();
80-
self::$kernel = $kernel;
80+
static::$kernel = $kernel;
8181
static::$booted = true;
8282

8383
$container = static::$kernel->getContainer();

0 commit comments

Comments
 (0)