Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php
  2. 9 core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php

Namespace

Drupal\accept_header_routing_test

File

core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.php
View source
<?php

namespace Drupal\accept_header_routing_test;

use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceModifierInterface;

/**
 * Service provider for the accept_header_routing_test module.
 */
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,
    ]);
  }

}

Classes

Namesort descending Description
AcceptHeaderRoutingTestServiceProvider Service provider for the accept_header_routing_test module.