Skip to content

Commit a9393f9

Browse files
committed
[HttpKernel] Fix uninitialized property in Bundle class
1 parent fa590af commit a9393f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Bundle/Bundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
abstract class Bundle implements BundleInterface
2626
{
2727
protected string $name;
28-
protected ExtensionInterface|false $extension;
28+
protected ExtensionInterface|false|null $extension = null;
2929
protected string $path;
3030
protected ?ContainerInterface $container;
3131

0 commit comments

Comments
 (0)