Skip to content

Commit 1c6ce12

Browse files
authored
Merge pull request #32 from gjuric/hotfix/symfony_compatibility
Remove typehint for KernelInterface to make it compatible with Symfony
2 parents 1dce70f + e529070 commit 1c6ce12

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Symfony/TestCase/SymfonyKernel.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
*/
1313
trait SymfonyKernel
1414
{
15-
protected static ?KernelInterface $kernel = null;
15+
/**
16+
* @var KernelInterface|null
17+
*/
18+
protected static $kernel = null;
1619

1720
protected static function bootKernel(array $options = []): KernelInterface
1821
{

0 commit comments

Comments
 (0)