コード例 #1
0
ファイル: CommandBus.php プロジェクト: snowfire/sprinkles
 public function execute(Command $command)
 {
     $handler = $this->commandTranslator->toCommandHandler($command);
     return $this->app->make($handler)->handle($command);
 }