GearmanBaseBundle.php 719 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace Mmoreramerino\GearmanBundle\Module;
  3. use Symfony\Component\HttpKernel\Bundle\Bundle;
  4. use Mmoreramerino\GearmanBundle\Sevices\GearmanSettings;
  5. use Symfony\Component\DependencyInjection\ContainerBuilder;
  6. /**
  7. * Gearman Base Bundle
  8. *
  9. * @author Marc Morera <marc@ulabox.com>
  10. */
  11. class GearmanBaseBundle extends Bundle
  12. {
  13. /**
  14. * Shutdowns the Bundle.
  15. *
  16. * @api
  17. */
  18. public function shutdown()
  19. {
  20. }
  21. /**
  22. * Builds the bundle.
  23. *
  24. * It is only ever called once when the cache is empty.
  25. *
  26. * @param ContainerBuilder $container A ContainerBuilder instance
  27. *
  28. * @api
  29. */
  30. public function build(ContainerBuilder $container)
  31. {
  32. }
  33. }