/**
  * Subscribe the given array of command handlers on the command bus
  * @param array $handlers
  */
 public function subscribe($handlers)
 {
     $handlers = $this->isTraversable($handlers) ? $handlers : [$handlers];
     foreach ($handlers as $commandHandler) {
         $this->commandBus->subscribe($commandHandler);
     }
 }