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