/**
  * Handles a CreateUserCommand
  *
  * @param  CreateUserCommand $command
  */
 public function handleCreateUserCommand(CreateUserCommand $command)
 {
     $user = null;
     $originalUser = $command->getOriginalUser();
     ContextContainer::setContext($command->getContext());
     try {
         $user = $this->createUser($command->getId(), $originalUser, $command->getPreferredLanguage());
         $this->userManager->save($user);
         $this->logger->info('User Created');
     } catch (\Exception $e) {
         $this->logger->error('Error creating the user');
         $this->errorHandler->handle(new UnableToCreateUserEvent($command->getId(), new UndefinedApplicationUser($this->accountFactory->build($originalUser))), $command->getContext());
     }
     ContextContainer::reset();
 }
 /**
  * Handles a GameMoveCommand
  *
  * @param  GameMoveCommand $command
  * @return void
  */
 public function handleGameMoveCommand(GameMoveCommand $command)
 {
     ContextContainer::setContext($command->getContext());
     try {
         $miniGame = $this->gameManager->load($command->getGameId());
         $miniGame->play($command->getPlayerId(), $command->getMove());
         $this->gameManager->save($miniGame);
     } catch (\Exception $e) {
         $this->errorHandler->handle(new MiniGameAppErrorEvent($command->getGameId(), $command->getPlayerId(), $e->getMessage()), $command->getContext());
     }
     ContextContainer::reset();
 }
 public function tearDown()
 {
     \Mockery::close();
     ContextContainer::reset();
 }