/**
  * @param int $id_user - id of the user accessing the moderation actions
  * @param int $id_game - id of currently selected game
  * @return SetShipsController
  */
 public function __construct($id_user, $id_game)
 {
     parent::__construct($id_user, $id_game, PHASE_SETSHIPS);
 }
 /**
  * @param int $id_user - id of the user accessing the moderation actions
  * @param int $id_game - id of currently selected game
  * @return LandMoveController
  */
 public function __construct($id_user, $id_game)
 {
     parent::__construct((int) $id_user, (int) $id_game, PHASE_LANDMOVE);
 }
 /**
  * @param int $id_user - id of the user accessing the moderation actions
  * @param int $id_game - id of currently selected game
  * @return ProductionController
  */
 public function __construct($id_user, $id_game)
 {
     parent::__construct((int) $id_user, (int) $id_game, PHASE_PRODUCTION);
 }
 /**
  * @param int $id_user - id of the user accessing the moderation actions
  * @param int $id_game - id of currently selected game
  * @return SelectStartController
  */
 public function __construct($id_user, $id_game)
 {
     parent::__construct($id_user, $id_game, PHASE_SELECTSTART);
 }