vendor/nexcrm/nexcrm-person-bundle/src/PersonBundle.php line 10

Open in your IDE?
  1. <?php
  2. namespace NexCRM\PersonBundle;
  3. use NexCRM\PersonBundle\DependencyInjection\PersonExtension;
  4. use NexCRM\PersonBundle\Entity\Person;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. use Symfony\Component\HttpKernel\Bundle\Bundle;
  7. class PersonBundle extends Bundle
  8. {
  9.     public function boot()
  10.     {
  11.         new Person();
  12.     }
  13.     public function getContainerExtension()
  14.     {
  15.         return new PersonExtension();
  16.     }
  17. }