/var/www/vhosts/ihelp.ro/httpdocs/vendor/google/apiclient-services/src/Games/Resource
NameSizeModeActions
AchievementDefinitions.php20740644editdlrm
Achievements.php61250644editdlrm
Applications.php35490644editdlrm
Events.php35590644editdlrm
Leaderboards.php25220644editdlrm
Metagame.php26970644editdlrm
Players.php43100644editdlrm
Recall.php37840644editdlrm
Revisions.php18450644editdlrm
Scores.php75930644editdlrm
Snapshots.php26700644editdlrm
Stats.php14480644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/google/apiclient-services/src/Games/Resource/Revisions.php (1845B)
* $gamesService = new Google\Service\Games(...); * $revisions = $gamesService->revisions; * */ class Revisions extends \Google\Service\Resource { /** * Checks whether the games client is out of date. (revisions.check) * * @param string $clientRevision Required. The revision of the client SDK used * by your application. Format: `[PLATFORM_TYPE]:[VERSION_NUMBER]`. Possible * values of `PLATFORM_TYPE` are: * `ANDROID` - Client is running the Android * SDK. * `IOS` - Client is running the iOS SDK. * `WEB_APP` - Client is running * as a Web App. * @param array $optParams Optional parameters. * @return RevisionCheckResponse */ public function check($clientRevision, $optParams = []) { $params = ['clientRevision' => $clientRevision]; $params = array_merge($params, $optParams); return $this->call('check', [$params], RevisionCheckResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Revisions::class, 'Google_Service_Games_Resource_Revisions');