stack/callable-http-kernel

HttpKernelInterface implementation based on callables.

v1.0.1 2016-06-18 18:53 UTC

This package is not auto-updated.

Last update: 2024-04-20 11:11:48 UTC


README

HttpKernelInterface implementation based on callables.

It's mostly useful to test stack middlewares, and to mock the HttpKernelInterface on the fly.

Example

use Stack\CallableHttpKernel;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;

$app = new CallableHttpKernel(function (Request $request) {
    return new Response('Hello World!');
});