AppKernel.php 838 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. * (c) Jeroen van den Enden <info@endroid.nl>
  4. *
  5. * This source file is subject to the MIT license that is bundled
  6. * with this source code in the file LICENSE.
  7. */
  8. use Symfony\Component\Config\Loader\LoaderInterface;
  9. use Symfony\Component\HttpKernel\Kernel;
  10. class AppKernel extends Kernel
  11. {
  12. /**
  13. * {@inheritdoc}
  14. */
  15. public function registerBundles()
  16. {
  17. $bundles = [
  18. new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
  19. new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
  20. new Endroid\QrCode\Bundle\EndroidQrCodeBundle(),
  21. ];
  22. return $bundles;
  23. }
  24. /**
  25. * {@inheritdoc}
  26. */
  27. public function registerContainerConfiguration(LoaderInterface $loader)
  28. {
  29. $loader->load(__DIR__.'/config/config.yml');
  30. }
  31. }