芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/assets/sources/aws/Aws/Pinpoint/PinpointClient.php
'GetEndpoint', 'GetUserEndpointAsync' => 'GetEndpointAsync', 'UpdateUserEndpoint' => 'UpdateEndpoint', 'UpdateUserEndpointAsync' => 'UpdateEndpointAsync', 'UpdateUserEndpointsBatch' => 'UpdateEndpointsBatch', 'UpdateUserEndpointsBatchAsync' => 'UpdateEndpointsBatchAsync', ]; public function __call($name, array $args) { // Overcomes a naming collision with `AwsClient::getEndpoint`. if (isset(self::$nameCollisionOverrides[ucfirst($name)])) { $name = self::$nameCollisionOverrides[ucfirst($name)]; } return parent::__call($name, $args); } /** * @internal * @codeCoverageIgnore */ public static function applyDocFilters(array $api, array $docs) { foreach (self::$nameCollisionOverrides as $overrideName => $operationName) { if (substr($overrideName, -5) === 'Async') { continue; } // Overcomes a naming collision with `AwsClient::getEndpoint`. $api['operations'][$overrideName] = $api['operations'][$operationName]; $docs['operations'][$overrideName] = $docs['operations'][$operationName]; unset($api['operations'][$operationName], $docs['operations'][$operationName]); } ksort($api['operations']); return [ new Service($api, ApiProvider::defaultProvider()), new DocModel($docs) ]; } }