From cd5a9bf9ac664cdfb9972c41cc6b654569f93aac Mon Sep 17 00:00:00 2001 From: kremsy Date: Sat, 11 Jul 2015 14:10:28 +0200 Subject: [PATCH] added types to doc --- core/Communication/CommunicationMethods.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/Communication/CommunicationMethods.php b/core/Communication/CommunicationMethods.php index 67a58de6..ae3a9606 100644 --- a/core/Communication/CommunicationMethods.php +++ b/core/Communication/CommunicationMethods.php @@ -29,22 +29,22 @@ interface CommunicationMethods { /** Skips to a Specific Map by MxId or MapUid * Required Parameters - * - mxId + * - mxId (integer) * OR - * - mapUid + * - mapUid (string) */ const SKIP_TO_MAP = "MapActions.SkipToMap"; /** Adds a Map from Mania Exchange to the Server * Required Parameters - * - mxId + * - mxId (integer) * (no success returning yet because of asynchronously of adding) */ const ADD_MAP = "MapManager.AddMap"; /** Removes a Map from the Server * Required Parameters - * - mapUid + * - mapUid (string) * Optional Parameters * - displayMessage (default true) * - eraseMapFile (default false) @@ -60,9 +60,9 @@ interface CommunicationMethods { /** Gets the current Map * Required Parameters - * - mxId + * - mxId (integer) * OR - * - mapUid + * - mapUid (string) */ const GET_CURRENT_MAP = "MapManager.GetCurrentMap"; @@ -117,7 +117,7 @@ interface CommunicationMethods { * Required Params * - login * Optional Params - * - teamId (id of the team the player shoudl get forced into it) + * - teamId (integer, id of the team the player should get forced into it) */ const FORCE_PLAYER_TO_PLAY = "PlayerActions.ForcePlayerToPlay";