ErrorServiceTestServiceProvider.php in Drupal 8
File
core/modules/system/tests/modules/error_service_test/src/ErrorServiceTestServiceProvider.php
View source
<?php
namespace Drupal\error_service_test;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;
class ErrorServiceTestServiceProvider implements ServiceModifierInterface {
public static $containerBuilder;
public function alter(ContainerBuilder $container) {
static::$containerBuilder = $container;
}
}