diff --git a/core/lib/Drupal/Component/DependencyInjection/Container.php b/core/lib/Drupal/Component/DependencyInjection/Container.php index 9594b6c796ea52182a8965fe5227dae0d7623fad..9eecff3eb31f2f22ca4eff9bbfb60e23e73a9ab7 100644 --- a/core/lib/Drupal/Component/DependencyInjection/Container.php +++ b/core/lib/Drupal/Component/DependencyInjection/Container.php @@ -9,6 +9,7 @@ use Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException; use Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException; use Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException; +use Symfony\Contracts\Service\ResetInterface; /** * Provides a container optimized for Drupal's needs. @@ -41,12 +42,9 @@ * - The function getServiceIds() was added as it has a use-case in core and * contrib. * - * @todo Implement Symfony\Contracts\Service\ResetInterface once Symfony 4 - * is being used. See https://www.drupal.org/project/drupal/issues/3032605 - * * @ingroup container */ -class Container implements ContainerInterface { +class Container implements ContainerInterface, ResetInterface { /** * The parameters of the container. diff --git a/core/lib/Drupal/Component/DependencyInjection/composer.json b/core/lib/Drupal/Component/DependencyInjection/composer.json index 771c5cc9ff0a575ad263ea7e09ddfc208834dddc..e370fa3ed783721810d16d9695497ebc787cc40d 100644 --- a/core/lib/Drupal/Component/DependencyInjection/composer.json +++ b/core/lib/Drupal/Component/DependencyInjection/composer.json @@ -12,7 +12,8 @@ }, "require": { "php": ">=7.3.0", - "symfony/dependency-injection": "^4.4" + "symfony/dependency-injection": "^4.4", + "symfony/service-contracts": "^1.1|^2" }, "suggest": { "symfony/expression-language": "For using expressions in service container configuration"