From a736afb56820c35b4f96b41f659c759367b11708 Mon Sep 17 00:00:00 2001 From: Jason Bouffard Date: Tue, 9 Jan 2018 08:25:14 -0500 Subject: [PATCH] Change Kernel::getPHPDIContainer to protected https://github.com/PHP-DI/Symfony-Bridge/issues/17 --- src/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kernel.php b/src/Kernel.php index 4ec6ce1..23fb54a 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -102,7 +102,7 @@ private function disableDebugClassLoader() /** * @return ContainerInterface */ - private function getPHPDIContainer() + protected function getPHPDIContainer() { if ($this->phpdiContainer === null) { $builder = new \DI\ContainerBuilder();