QueueingDispatcher.php 287 B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Bus;
  3. interface QueueingDispatcher extends Dispatcher
  4. {
  5. /**
  6. * Dispatch a command to its appropriate handler behind a queue.
  7. *
  8. * @param mixed $command
  9. * @return mixed
  10. */
  11. public function dispatchToQueue($command);
  12. }