GearmanOutputAwareInterface.php 688 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Gearman Bundle for Symfony2
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * Feel free to edit as you please, and have fun.
  9. *
  10. * @author Marc Morera <yuhu@mmoreram.com>
  11. */
  12. namespace Mmoreram\GearmanBundle\Command\Util;
  13. use Symfony\Component\Console\Output\OutputInterface;
  14. /**
  15. * Interface GearmanOutputAwareInterface
  16. *
  17. * @author Dominic Grostate <codekestrel@googlemail.com>
  18. *
  19. * @since 2.4.2
  20. */
  21. interface GearmanOutputAwareInterface
  22. {
  23. /**
  24. * Set the output
  25. *
  26. * @param OutputInterface $output
  27. */
  28. public function setOutput(OutputInterface $output);
  29. }