<?php
namespace NexCRM\DMSBundle;
use NexCRM\DMSBundle\DependencyInjection\DMSBundleExtension;
use NexCRM\DMSBundle\Entity\DMS;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
class DMSBundle extends Bundle
{
public function getContainerExtension()
{
return new DMSBundleExtension();
}
}