Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php \Drupal\accept_header_routing_test\AcceptHeaderRoutingTestServiceProvider
  2. 9 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php \Drupal\accept_header_routing_test\AcceptHeaderRoutingTestServiceProvider

Service provider for the accept_header_routing_test module.

Hierarchy

Expanded class hierarchy of AcceptHeaderRoutingTestServiceProvider

File

core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php, line 11

Namespace

Drupal\accept_header_routing_test
View source
class AcceptHeaderRoutingTestServiceProvider implements ServiceModifierInterface {

  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {

    // Remove the basic content negotiation middleware and replace it with a
    // basic header based one.
    $container
      ->register('http_middleware.negotiation', 'Drupal\\accept_header_routing_test\\AcceptHeaderMiddleware')
      ->addTag('http_middleware', [
      'priority' => 400,
    ]);
  }

}

Members