%PDF- %PDF-
Direktori : /home/emtnaeewxm/www/vendor/sensio/framework-extra-bundle/Tests/Fixtures/ |
Current File : /home/emtnaeewxm/www/vendor/sensio/framework-extra-bundle/Tests/Fixtures/TestKernel.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 Tests\Fixtures; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\HttpKernel\Kernel; /** * Used for functional tests. */ class TestKernel extends Kernel { public function registerBundles() { return [ new \Symfony\Bundle\FrameworkBundle\FrameworkBundle(), new \Symfony\Bundle\MonologBundle\MonologBundle(), new \Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), new \Symfony\Bundle\TwigBundle\TwigBundle(), new \Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), new \Symfony\Bundle\SecurityBundle\SecurityBundle(), new \Tests\Fixtures\FooBundle\FooBundle(), new \Tests\Fixtures\ActionArgumentsBundle\ActionArgumentsBundle(), ]; } public function registerContainerConfiguration(LoaderInterface $loader) { $loader->load(__DIR__.'/config/config.yml'); if (\PHP_VERSION_ID >= 70100) { $loader->load(__DIR__.'/config/nullable_type/config.yml'); } } public function getCacheDir() { return $this->rootDir.'/cache/'.$this->environment; } } class_alias('Tests\Fixtures\TestKernel', 'TestKernel');