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

@@ -9,6 +9,6 @@ declare(strict_types=1);
* all environments (prod, dev, test etc).
*/
return [
Pcm\ExampleBundle\PcmExampleBundle::class => ['all' => true],
Pcm\MetadataBundle\PcmMetadataBundle::class => ['all' => true],
];

View File

@@ -9,7 +9,7 @@ services:
# Read the documentation to see why we do this:
# https://symfony.com/doc/current/service_container/autowiring.html#service-autowiring-alias
#
Pcm\ExampleBundle\Greeting:
Pcm\MetadataBundle\Greeting:
public: false
alias: pcm_example.greeting
@@ -17,12 +17,12 @@ services:
# Mark the alias we created as public.
pcm_example.greeting:
public: true
class: Pcm\ExampleBundle\Greeting
class: Pcm\MetadataBundle\Greeting
# If we were defining a twig extension, we'd want to add the twig.runtime tag
# so it loads correctly.
#
# Pcm\ExampleBundle\SomeTwigRuntime
# Pcm\MetadataBundle\SomeTwigRuntime
# tags:
# - { name: twig.runtime }