- <?php
-
- namespace Lc\SovBundle;
-
- use Lc\SovBundle\DependencyInjection\LcSovExtension;
- use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
- use Symfony\Component\HttpKernel\Bundle\Bundle;
-
-
- class LcSovBundle extends Bundle
- {
- public function getContainerExtension(): ?ExtensionInterface
- {
- return new LcSovExtension();
- }
- }
|