RouterTestServiceProvider.php in Drupal 8
File
core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php
View source
<?php
namespace Drupal\router_test;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceProviderInterface;
class RouterTestServiceProvider implements ServiceProviderInterface {
public function register(ContainerBuilder $container) {
$container
->register('router_test.subscriber', 'Drupal\\router_test\\RouteTestSubscriber')
->addTag('event_subscriber');
$container
->register('access_check.router_test', 'Drupal\\router_test\\Access\\TestAccessCheck')
->addTag('access_check', [
'applies_to' => '_access_router_test',
]);
}
}