27 lines
559 B
PHP
27 lines
559 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pcm\ExampleBundle\Tests;
|
|
|
|
use Pcm\ExampleBundle\PcmExampleBundle;
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
final class TestKernel extends Kernel
|
|
{
|
|
public function registerBundles(): array
|
|
{
|
|
return [
|
|
new PcmExampleBundle()
|
|
];
|
|
}
|
|
|
|
public function registerContainerConfiguration(LoaderInterface $loader): void
|
|
{
|
|
// Ignore this
|
|
// $loader->load(__DIR__.'/../config/packages/pcm_example.yaml');
|
|
}
|
|
}
|
|
|