a1102ab7843c3f3ba86a89f986e2ca7c4e0fe775
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / KernelForOverrideName.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\HttpKernel\Tests\Fixtures;
13
14 use Symfony\Component\HttpKernel\Kernel;
15 use Symfony\Component\Config\Loader\LoaderInterface;
16
17 class KernelForOverrideName extends Kernel
18 {
19     protected $name = 'overridden';
20
21     public function registerBundles()
22     {
23     }
24
25     public function registerContainerConfiguration(LoaderInterface $loader)
26     {
27     }
28 }