Skip to content

Commit b04d7b0

Browse files
bug symfony#52438 [HttpKernel] Fix uninitialized property in Bundle class (javiereguiluz)
This PR was merged into the 7.0 branch. Discussion ---------- [HttpKernel] Fix uninitialized property in Bundle class | Q | A | ------------- | --- | Branch? | 7.0 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix symfony#52436 | License | MIT Commits ------- a9393f9 [HttpKernel] Fix uninitialized property in Bundle class
2 parents fa590af + a9393f9 commit b04d7b0

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)