Vous êtes connecté en tant que anonymous Se Deconnecter
vendor/illuminate/contracts/Bus/QueueingDispatcher.php
4f5a31d2
 <?php
 
 namespace Illuminate\Contracts\Bus;
 
 interface QueueingDispatcher extends Dispatcher
 {
     /**
      * Dispatch a command to its appropriate handler behind a queue.
      *
      * @param  mixed  $command
      * @return mixed
      */
     public function dispatchToQueue($command);
 }