src/AppBundle/AppBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace AppBundle;
  3. use AppBundle\DependencyInjection\AppBundleExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class AppBundle extends Bundle {
  6.     public function getContainerExtension()
  7.     {
  8.         return new AppBundleExtension();
  9.     }
  10. }