GearmanOutputAwareInterface.php 684 B

1234567891011121314151617181920212223242526272829303132
  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. * @author Dominic Grostate <codekestrel@googlemail.com>
  12. */
  13. namespace Mmoreram\GearmanBundle\Command\Util;
  14. use Symfony\Component\Console\Output\OutputInterface;
  15. /**
  16. * Interface GearmanOutputAwareInterface
  17. *
  18. * @since 2.4.2
  19. */
  20. interface GearmanOutputAwareInterface
  21. {
  22. /**
  23. * Set the output
  24. *
  25. * @param OutputInterface $output
  26. */
  27. public function setOutput(OutputInterface $output);
  28. }