function RouterTestServiceProvider::register

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()
  2. 8.9.x core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()
  3. 11.x core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php \Drupal\router_test\RouterTestServiceProvider::register()

Overrides ServiceProviderInterface::register

File

core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php, line 16

Class

RouterTestServiceProvider
Registers a dynamic route provider.

Namespace

Drupal\router_test

Code

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',
    ]);
    $container->register('router_test.early_exception.subscriber', 'Drupal\\router_test\\RouterTestEarlyExceptionSubscriber')
        ->addTag('event_subscriber');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.