diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-27 19:17:27 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-07-07 01:02:07 +0200 |
commit | cbe846a64eb73b99d11320c79678dd6dcb58b44b (patch) | |
tree | 43e2fe4216f64ffdf47cbb3e2aca839c501e7db1 /phpBB | |
parent | 86205454afb0b851534f7309c668dc092863c8ce (diff) | |
download | forums-cbe846a64eb73b99d11320c79678dd6dcb58b44b.tar forums-cbe846a64eb73b99d11320c79678dd6dcb58b44b.tar.gz forums-cbe846a64eb73b99d11320c79678dd6dcb58b44b.tar.bz2 forums-cbe846a64eb73b99d11320c79678dd6dcb58b44b.tar.xz forums-cbe846a64eb73b99d11320c79678dd6dcb58b44b.zip |
[ticket/12775] Don't assign $container to null
PHPBB3-12775
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/di/container_factory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/di/container_factory.php b/phpBB/phpbb/di/container_factory.php index a9bc0ea7f7..50844ba5d0 100644 --- a/phpBB/phpbb/di/container_factory.php +++ b/phpBB/phpbb/di/container_factory.php @@ -30,7 +30,7 @@ class container_factory * * @var ContainerInterface */ - protected $container = null; + protected $container; /** * @var \phpbb\db\driver\driver_interface |