vendor/sulu/sulu/src/Sulu/Bundle/ContactBundle/SuluContactBundle.php line 23

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\ContactBundle;
  11. use Sulu\Bundle\ContactBundle\Entity\AccountInterface;
  12. use Sulu\Bundle\ContactBundle\Entity\ContactInterface;
  13. use Sulu\Bundle\PersistenceBundle\PersistenceBundleTrait;
  14. use Symfony\Component\DependencyInjection\ContainerBuilder;
  15. use Symfony\Component\HttpKernel\Bundle\Bundle;
  16. /**
  17.  * @final
  18.  */
  19. class SuluContactBundle extends Bundle
  20. {
  21.     use PersistenceBundleTrait;
  22.     /**
  23.      * @internal
  24.      */
  25.     public function build(ContainerBuilder $container): void
  26.     {
  27.         parent::build($container);
  28.         $this->buildPersistence(
  29.             [
  30.                 ContactInterface::class => 'sulu.model.contact.class',
  31.                 AccountInterface::class => 'sulu.model.account.class',
  32.             ],
  33.             $container
  34.         );
  35.     }
  36. }