* * 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 Psr\Log\NullLogger; use Symfony\Bundle\FrameworkBundle\FrameworkBundle; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Kernel; class TestAppKernel extends Kernel { public function registerBundles() { return [ new FrameworkBundle(), ]; } public function setRootDir($rootDir) { $this->rootDir = $rootDir; } public function registerContainerConfiguration(LoaderInterface $loader) { $loader->load(__DIR__.\DIRECTORY_SEPARATOR.'config.yml'); } protected function build(ContainerBuilder $container) { $container->register('logger', NullLogger::class); } }