FinalTestHttpMiddlewareClass.php

Same filename and directory in other branches
  1. 10 core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/FinalTestHttpMiddlewareClass.php

Namespace

Drupal\Tests\Core\DependencyInjection\Fixture

File

core/tests/Drupal/Tests/Core/DependencyInjection/Fixture/FinalTestHttpMiddlewareClass.php

View source
<?php

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.