PackagistWebBundle.php 511 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of Packagist.
  4. *
  5. * (c) Jordi Boggiano <j.boggiano@seld.be>
  6. * Nils Adermann <naderman@naderman.de>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Packagist\WebBundle;
  12. use Symfony\Component\HttpKernel\Bundle\Bundle;
  13. use Symfony\Component\DependencyInjection\ContainerBuilder;
  14. /**
  15. * @author Jordi Boggiano <j.boggiano@seld.be>
  16. */
  17. class PackagistWebBundle extends Bundle
  18. {
  19. }