mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-28 14:44:17 +01:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
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\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);
|
|
}
|
|
}
|