You are here

AcceptHeaderRoutingTestServiceProvider.php in Drupal 8

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.