123456789101112131415161718192021222324252627282930313233343536 |
- <?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\Bundle\FrameworkBundle\Tests\Command\CacheClearCommand\Fixture;
- use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
- use Symfony\Component\Config\Loader\LoaderInterface;
- use Symfony\Component\HttpKernel\Kernel;
- class TestAppKernel extends Kernel
- {
- public function registerBundles()
- {
- return array(
- new FrameworkBundle(),
- );
- }
- public function setRootDir($rootDir)
- {
- $this->rootDir = $rootDir;
- }
- public function registerContainerConfiguration(LoaderInterface $loader)
- {
- $loader->load(__DIR__.\DIRECTORY_SEPARATOR.'config.yml');
- }
- }
|