You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
309B

  1. <?php
  2. namespace Lc\CaracoleBundle;
  3. use Lc\CaracoleBundle\DependencyInjection\LcCaracoleExtension;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class LcCaracoleBundle extends Bundle
  6. {
  7. public function getContainerExtension()
  8. {
  9. return new LcCaracoleExtension();
  10. }
  11. }