<?phpnamespace NexCRM\PersonBundle;use NexCRM\PersonBundle\DependencyInjection\PersonExtension;use NexCRM\PersonBundle\Entity\Person;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;class PersonBundle extends Bundle{ public function boot() { new Person(); } public function getContainerExtension() { return new PersonExtension(); }}