AcceptHeaderRoutingTestServiceProvider.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\accept_header_routing_testFile
core/modules/system/tests/modules/accept_header_routing_test/src/AcceptHeaderRoutingTestServiceProvider.phpView 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
Name | Description |
---|---|
AcceptHeaderRoutingTestServiceProvider | Service provider for the accept_header_routing_test module. |