vendor/nexcrm/nexcrm-dms-bundle/src/DMSBundle.php line 10

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