Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / system / tests / modules / error_service_test / src / ErrorServiceTestServiceProvider.php
1 <?php
2
3 namespace Drupal\error_service_test;
4
5 use Drupal\Core\DependencyInjection\ContainerBuilder;
6 use Drupal\Core\DependencyInjection\ServiceModifierInterface;
7
8 class ErrorServiceTestServiceProvider implements ServiceModifierInterface {
9
10   /**
11    * The in-situ container builder.
12    *
13    * @var \Drupal\Core\DependencyInjection\ContainerBuilder
14    */
15   public static $containerBuilder;
16
17   /**
18    * {@inheritdoc}
19    */
20   public function alter(ContainerBuilder $container) {
21     static::$containerBuilder = $container;
22   }
23
24 }