TestCompatClosureHttpMiddlewareClass.php
Namespace
Drupal\Tests\Core\DependencyInjection\FixtureFile
-
core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ Fixture/ TestCompatClosureHttpMiddlewareClass.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Core\DependencyInjection\Fixture;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\HttpKernelInterface;
/**
* Stub of http_middleware class taking a service closure with bc.
*/
class TestCompatClosureHttpMiddlewareClass implements HttpKernelInterface {
public function __construct(protected readonly HttpKernelInterface|\Closure $inner) {
}
/**
* {@inheritdoc}
*/
public function handle(Request $request, int $type = self::MAIN_REQUEST, bool $catch = TRUE) : Response {
return new Response();
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| TestCompatClosureHttpMiddlewareClass | Stub of http_middleware class taking a service closure with bc. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.