partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

PartKeeprCoreBundle.php (304B)


      1 <?php
      2 
      3 namespace PartKeepr\CoreBundle;
      4 
      5 use PartKeepr\CoreBundle\DependencyInjection\PartKeeprCoreExtension;
      6 use Symfony\Component\HttpKernel\Bundle\Bundle;
      7 
      8 class PartKeeprCoreBundle extends Bundle
      9 {
     10     public function getContainerExtension()
     11     {
     12         return new PartKeeprCoreExtension();
     13     }
     14 }