PHP 8.2.30
Preview: TestHttpKernel.php Size: 1.07 KB
/opt/alt/php53/usr/share/pear/test/HttpKernel/Symfony/Component/HttpKernel/Tests/TestHttpKernel.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\HttpKernel\Tests;

use Symfony\Component\HttpKernel\HttpKernel;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
use Symfony\Component\EventDispatcher\EventDispatcher;

class TestHttpKernel extends HttpKernel implements ControllerResolverInterface
{
    public function __construct()
    {
        parent::__construct(new EventDispatcher(), $this);
    }

    public function getController(Request $request)
    {
        return array($this, 'callController');
    }

    public function getArguments(Request $request, $controller)
    {
        return array($request);
    }

    public function callController(Request $request)
    {
        return new Response('Request: '.$request->getRequestUri());
    }
}

Directory Contents

Dirs: 13 × Files: 6

Name Size Perms Modified Actions
Bundle DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
Config DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
Debug DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
Fixtures DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
Fragment DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
HttpCache DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
Profiler DIR
- drwxr-xr-x 2024-03-03 22:55:08
Edit Download
6.62 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
10.56 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
25.69 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
2.97 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.07 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download
1.15 KB lrw-r--r-- 2019-12-18 11:20:41
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).