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

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. class SuluContactBundle extends Bundle
  17. {
  18.     use PersistenceBundleTrait;
  19.     public function build(ContainerBuilder $container)
  20.     {
  21.         parent::build($container);
  22.         $this->buildPersistence(
  23.             [
  24.                 ContactInterface::class => 'sulu.model.contact.class',
  25.                 AccountInterface::class => 'sulu.model.account.class',
  26.             ],
  27.             $container
  28.         );
  29.     }
  30. }