Exemplo n.º 1
0
 /**
  * Execute the command
  *
  * @param Command $command
  * @return mixed
  */
 public function execute(Command $command)
 {
     $this->executeDecorators($command);
     $handler = $this->commandTranslator->toCommandHandler($command);
     return $this->app->make($handler)->handle($command);
 }