FinalTestHttpMiddlewareClass.php
Same filename in other branches
Namespace
Drupal\Tests\Core\DependencyInjection\FixtureFile
-
core/
tests/ Drupal/ Tests/ Core/ DependencyInjection/ Fixture/ FinalTestHttpMiddlewareClass.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;
use Symfony\Component\HttpKernel\TerminableInterface;
/**
* Stub of http_middleware class that is declared final.
*/
final class FinalTestHttpMiddlewareClass implements HttpKernelInterface, TerminableInterface {
/**
* {@inheritdoc}
*/
public function handle(Request $request, int $type = self::MAIN_REQUEST, bool $catch = TRUE) : Response {
return new Response();
}
/**
* {@inheritdoc}
*/
public function terminate(Request $request, Response $response) : void {
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
FinalTestHttpMiddlewareClass | Stub of http_middleware class that is declared final. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.