Run quickstart script

This commit is contained in:
brabli
2025-11-27 13:31:15 +00:00
parent 2a82b5c0b1
commit 0633768582
7 changed files with 13 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace Pcm\ExampleBundle\Tests\Config;
namespace Pcm\MetadataBundle\Tests\Config;
use PHPUnit\Framework\TestCase;
use Symfony\Bundle\FrameworkBundle\DependencyInjection\Configuration;

View File

@@ -2,9 +2,9 @@
declare(strict_types=1);
namespace Pcm\ExampleBundle\Tests;
namespace Pcm\MetadataBundle\Tests;
use Pcm\ExampleBundle\PcmExampleBundle;
use Pcm\MetadataBundle\PcmMetadataBundle;
use Symfony\Component\Config\Loader\LoaderInterface;
use Symfony\Component\HttpKernel\Kernel;
@@ -13,7 +13,7 @@ final class TestKernel extends Kernel
public function registerBundles(): array
{
return [
new PcmExampleBundle()
new PcmMetadataBundle()
];
}