Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Psr15ToSymfonyBridgeTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | public function testProcess() |
||
15 | { |
||
16 | // Symfony middleware that returns 'foo' |
||
17 | $symfonyMiddleware = new class implements HttpKernelInterface |
||
18 | { |
||
19 | public function handle(SymfonyRequest $request, $type = self::MASTER_REQUEST, $catch = true) |
||
34 | } |
||
35 |