FrameworkBundle.php 732 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Symfony\Bundle\FrameworkBundle;
  3. use Symfony\Framework\Bundle\Bundle;
  4. use Symfony\Components\DependencyInjection\ParameterBag\ParameterBagInterface;
  5. use Symfony\Components\DependencyInjection\Loader\XmlFileLoader;
  6. use Symfony\Components\DependencyInjection\ContainerBuilder;
  7. use Symfony\Bundle\FrameworkBundle\DependencyInjection\WebExtension;
  8. /*
  9. * This file is part of the Symfony framework.
  10. *
  11. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  12. *
  13. * This source file is subject to the MIT license that is bundled
  14. * with this source code in the file LICENSE.
  15. */
  16. /**
  17. * Bundle.
  18. *
  19. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  20. */
  21. class FrameworkBundle extends Bundle
  22. {
  23. }