Files
pcm-metadata-bundle/tests/TestKernel.php
2025-11-27 13:31:15 +00:00

27 lines
563 B
PHP

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