Skip to content

Commit

Permalink
Merge pull request #32 from gjuric/hotfix/symfony_compatibility
Browse files Browse the repository at this point in the history
Remove typehint for KernelInterface to make it compatible with Symfony
  • Loading branch information
jakzal authored Jun 13, 2020
2 parents 1dce70f + e529070 commit 1c6ce12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Symfony/TestCase/SymfonyKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
*/
trait SymfonyKernel
{
protected static ?KernelInterface $kernel = null;
/**
* @var KernelInterface|null
*/
protected static $kernel = null;

protected static function bootKernel(array $options = []): KernelInterface
{
Expand Down

0 comments on commit 1c6ce12

Please sign in to comment.