Files
pcm-badge-bundle/tests/TestKernel.php
2024-08-07 16:47:56 +01:00

26 lines
515 B
PHP

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