From 8740e44086cedfddd548ffcfe44a37bc713372e8 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Wed, 1 Mar 2017 01:03:24 +0100 Subject: [PATCH] Fix DI test --- .../Tests/Fixtures/php/services_private_frozen.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services_private_frozen.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services_private_frozen.php index f66693a105..6626db5567 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services_private_frozen.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services_private_frozen.php @@ -28,6 +28,11 @@ class ProjectServiceContainer extends Container public function __construct() { $this->services = array(); + $this->normalizedIds = array( + 'psr\\container\\containerinterface' => 'Psr\\Container\\ContainerInterface', + 'symfony\\component\\dependencyinjection\\container' => 'Symfony\\Component\\DependencyInjection\\Container', + 'symfony\\component\\dependencyinjection\\containerinterface' => 'Symfony\\Component\\DependencyInjection\\ContainerInterface', + ); $this->methodMap = array( 'bar_service' => 'getBarServiceService', 'baz_service' => 'getBazServiceService',