dispatchToQueue() public method

Dispatch a command to its appropriate handler behind a queue.
public dispatchToQueue ( mixed $command ) : mixed
$command mixed
return mixed
Exemplo n.º 1
0
 /**
  * Dispatch a command to its appropriate handler behind a queue.
  *
  * @param mixed $command
  * @return mixed 
  * @throws \RuntimeException
  * @static 
  */
 public static function dispatchToQueue($command)
 {
     return \Illuminate\Bus\Dispatcher::dispatchToQueue($command);
 }