vendor/ibexa/doctrine-schema/src/bundle/DoctrineSchemaBundle.php line 15

Open in your IDE?
  1. <?php
  2. /**
  3.  * @copyright Copyright (C) Ibexa AS. All rights reserved.
  4.  * @license For full copyright and license information view LICENSE file distributed with this source code.
  5.  */
  6. declare(strict_types=1);
  7. namespace Ibexa\Bundle\DoctrineSchema;
  8. use Ibexa\Bundle\DoctrineSchema\DependencyInjection\DoctrineSchemaExtension;
  9. use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class DoctrineSchemaBundle extends Bundle
  12. {
  13.     /**
  14.      * {@inheritdoc}
  15.      */
  16.     public function getContainerExtension(): ExtensionInterface
  17.     {
  18.         return new DoctrineSchemaExtension();
  19.     }
  20. }
  21. class_alias(DoctrineSchemaBundle::class, 'EzSystems\DoctrineSchemaBundle\DoctrineSchemaBundle');