diff --git a/CHANGELOG.md b/CHANGELOG.md index a3e12fc2..fac48b52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v2.7.7 от 09.03.2023 +* Добавлен idempotenceKey в документацию +* Добавлен метод для установки дополнительных параметров curl +* Добавлено описание в документацию по новому методу + ### v2.7.6 от 13.02.2023 * Исправлена опечатка в аннотации к AbstractObject * Скорректированы ссылки в файлах документации с примерами diff --git a/composer.json b/composer.json index fe94403a..838cca35 100644 --- a/composer.json +++ b/composer.json @@ -13,9 +13,9 @@ ], "dist": { "type": "zip", - "url": "https://git.yoomoney.ru/rest/api/latest/projects/SDK/repos/yookassa-sdk-php/archive?at=refs%2Ftags%2F2.7.6&format=zip" + "url": "https://git.yoomoney.ru/rest/api/latest/projects/SDK/repos/yookassa-sdk-php/archive?at=refs%2Ftags%2F2.7.7&format=zip" }, - "version": "2.7.6", + "version": "2.7.7", "require": { "php": ">=5.3.0", "ext-curl": "*", diff --git a/docs/classes/JsonSerializable.md b/docs/classes/JsonSerializable.md index e53ecaf4..843c72dd 100644 --- a/docs/classes/JsonSerializable.md +++ b/docs/classes/JsonSerializable.md @@ -50,6 +50,6 @@ public jsonSerialize() : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-ApiClientInterface.md b/docs/classes/YooKassa-Client-ApiClientInterface.md index 9ea56e96..8d7606b6 100644 --- a/docs/classes/YooKassa-Client-ApiClientInterface.md +++ b/docs/classes/YooKassa-Client-ApiClientInterface.md @@ -17,6 +17,7 @@ Interface ApiClientInterface | ----------:| ---- | ---- | ------- | | public | [call()](../classes/YooKassa-Client-ApiClientInterface.md#method_call) | | Создает CURL запрос, получает и возвращает обработанный ответ | | public | [getUserAgent()](../classes/YooKassa-Client-ApiClientInterface.md#method_getUserAgent) | | Возвращает UserAgent | +| public | [setAdvancedCurlOptions()](../classes/YooKassa-Client-ApiClientInterface.md#method_setAdvancedCurlOptions) | | Устанавливает дополнительные настройки curl | | public | [setBearerToken()](../classes/YooKassa-Client-ApiClientInterface.md#method_setBearerToken) | | Устанавливает OAuth-токен магазина | | public | [setConfig()](../classes/YooKassa-Client-ApiClientInterface.md#method_setConfig) | | Устанавливает настройки | | public | [setLogger()](../classes/YooKassa-Client-ApiClientInterface.md#method_setLogger) | | Устанавливает объект для логирования | @@ -183,6 +184,23 @@ public setConfig(array $config) : mixed **Returns:** mixed - + +#### public setAdvancedCurlOptions() : void + +```php +public setAdvancedCurlOptions() : void +``` + +**Summary** + +Устанавливает дополнительные настройки curl + +**Details:** +* Inherited From: [\YooKassa\Client\ApiClientInterface](../classes/YooKassa-Client-ApiClientInterface.md) + +**Returns:** void - + + --- @@ -200,6 +218,6 @@ public setConfig(array $config) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-BaseClient.md b/docs/classes/YooKassa-Client-BaseClient.md index 93502950..85b43b73 100644 --- a/docs/classes/YooKassa-Client-BaseClient.md +++ b/docs/classes/YooKassa-Client-BaseClient.md @@ -667,6 +667,6 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-CurlClient.md b/docs/classes/YooKassa-Client-CurlClient.md index 3355c225..7de0c37f 100644 --- a/docs/classes/YooKassa-Client-CurlClient.md +++ b/docs/classes/YooKassa-Client-CurlClient.md @@ -25,6 +25,7 @@ | public | [getTimeout()](../classes/YooKassa-Client-CurlClient.md#method_getTimeout) | | Возвращает значение параметра CURLOPT_TIMEOUT | | public | [getUserAgent()](../classes/YooKassa-Client-CurlClient.md#method_getUserAgent) | | Возвращает UserAgent | | public | [sendRequest()](../classes/YooKassa-Client-CurlClient.md#method_sendRequest) | | Выполняет запрос, получает и возвращает обработанный ответ | +| public | [setAdvancedCurlOptions()](../classes/YooKassa-Client-CurlClient.md#method_setAdvancedCurlOptions) | | Устанавливает дополнительные настройки curl | | public | [setBearerToken()](../classes/YooKassa-Client-CurlClient.md#method_setBearerToken) | | Устанавливает OAuth-токен магазина | | public | [setBody()](../classes/YooKassa-Client-CurlClient.md#method_setBody) | | Устанавливает тело запроса | | public | [setConfig()](../classes/YooKassa-Client-CurlClient.md#method_setConfig) | | Устанавливает настройки | @@ -231,6 +232,23 @@ public sendRequest() : array **Returns:** array - + +#### public setAdvancedCurlOptions() : void + +```php +public setAdvancedCurlOptions() : void +``` + +**Summary** + +Устанавливает дополнительные настройки curl + +**Details:** +* Inherited From: [\YooKassa\Client\CurlClient](../classes/YooKassa-Client-CurlClient.md) + +**Returns:** void - + + #### public setBearerToken() : $this @@ -495,6 +513,6 @@ public setTimeout(int $timeout) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client-UserAgent.md b/docs/classes/YooKassa-Client-UserAgent.md index eaac2470..19171d55 100644 --- a/docs/classes/YooKassa-Client-UserAgent.md +++ b/docs/classes/YooKassa-Client-UserAgent.md @@ -316,6 +316,6 @@ public setModule(string $name, string $version) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Client.md b/docs/classes/YooKassa-Client.md index a99f3592..a97eeed7 100644 --- a/docs/classes/YooKassa-Client.md +++ b/docs/classes/YooKassa-Client.md @@ -235,7 +235,7 @@ DEFAULT_ATTEMPTS_COUNT = 3 Текущая версия библиотеки ```php -SDK_VERSION = '2.7.6' +SDK_VERSION = '2.7.7' ``` @@ -2169,6 +2169,6 @@ protected handleError(\YooKassa\Common\ResponseObject $response) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractEnum.md b/docs/classes/YooKassa-Common-AbstractEnum.md index 61449674..5eb3c409 100644 --- a/docs/classes/YooKassa-Common-AbstractEnum.md +++ b/docs/classes/YooKassa-Common-AbstractEnum.md @@ -118,6 +118,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractObject.md b/docs/classes/YooKassa-Common-AbstractObject.md index 2df01401..ac01749d 100644 --- a/docs/classes/YooKassa-Common-AbstractObject.md +++ b/docs/classes/YooKassa-Common-AbstractObject.md @@ -332,6 +332,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractPaymentRequest.md b/docs/classes/YooKassa-Common-AbstractPaymentRequest.md index ea4c461b..caadb214 100644 --- a/docs/classes/YooKassa-Common-AbstractPaymentRequest.md +++ b/docs/classes/YooKassa-Common-AbstractPaymentRequest.md @@ -666,6 +666,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractPaymentRequestBuilder.md b/docs/classes/YooKassa-Common-AbstractPaymentRequestBuilder.md index c29d56be..60235f08 100644 --- a/docs/classes/YooKassa-Common-AbstractPaymentRequestBuilder.md +++ b/docs/classes/YooKassa-Common-AbstractPaymentRequestBuilder.md @@ -462,6 +462,6 @@ protected initCurrentObject() : self --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRefundRequest.md b/docs/classes/YooKassa-Common-AbstractRefundRequest.md index 4634186c..a0bba2a9 100644 --- a/docs/classes/YooKassa-Common-AbstractRefundRequest.md +++ b/docs/classes/YooKassa-Common-AbstractRefundRequest.md @@ -637,6 +637,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRequest.md b/docs/classes/YooKassa-Common-AbstractRequest.md index ce4a9457..5ad1f776 100644 --- a/docs/classes/YooKassa-Common-AbstractRequest.md +++ b/docs/classes/YooKassa-Common-AbstractRequest.md @@ -407,6 +407,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-AbstractRequestBuilder.md b/docs/classes/YooKassa-Common-AbstractRequestBuilder.md index be8909ad..79f7ccce 100644 --- a/docs/classes/YooKassa-Common-AbstractRequestBuilder.md +++ b/docs/classes/YooKassa-Common-AbstractRequestBuilder.md @@ -157,6 +157,6 @@ Abstract protected initCurrentObject() : \YooKassa\Common\AbstractRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md b/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md index 1903817a..13707a81 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ApiConnectionException.md @@ -126,6 +126,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ApiException.md b/docs/classes/YooKassa-Common-Exceptions-ApiException.md index 509d8fde..9e9c935f 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ApiException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ApiException.md @@ -123,6 +123,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md b/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md index 8fd4a626..6963bc07 100644 --- a/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md +++ b/docs/classes/YooKassa-Common-Exceptions-AuthorizeException.md @@ -126,6 +126,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md b/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md index 05a39f38..df3098db 100644 --- a/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md +++ b/docs/classes/YooKassa-Common-Exceptions-BadApiRequestException.md @@ -152,6 +152,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md b/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md index 598509ad..61d10ad6 100644 --- a/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md +++ b/docs/classes/YooKassa-Common-Exceptions-EmptyPropertyValueException.md @@ -79,6 +79,6 @@ public getProperty() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md b/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md index 6dc614be..5b7c5d9e 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ExtensionNotFoundException.md @@ -67,6 +67,6 @@ Constructor --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md b/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md index abfac791..fb0a538d 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ForbiddenException.md @@ -152,6 +152,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md b/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md index 9c3f5bdc..917ec071 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md +++ b/docs/classes/YooKassa-Common-Exceptions-InternalServerError.md @@ -155,6 +155,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md index 406b9af4..47c35ccf 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyException.md @@ -78,6 +78,6 @@ public getProperty() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md index 2dc6b3cf..f24c7dde 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueException.md @@ -94,6 +94,6 @@ public getValue() : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md index e472ec88..c6ee5ec5 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidPropertyValueTypeException.md @@ -94,6 +94,6 @@ public getType() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md b/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md index 0eb22521..f9cfb35a 100644 --- a/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md +++ b/docs/classes/YooKassa-Common-Exceptions-InvalidRequestException.md @@ -78,6 +78,6 @@ public getRequestObject() : \YooKassa\Common\AbstractRequest|null --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-JsonException.md b/docs/classes/YooKassa-Common-Exceptions-JsonException.md index 29afdaf7..dfe59bda 100644 --- a/docs/classes/YooKassa-Common-Exceptions-JsonException.md +++ b/docs/classes/YooKassa-Common-Exceptions-JsonException.md @@ -76,6 +76,6 @@ public __construct(mixed $message = "", mixed $code, mixed $previous = --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md b/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md index 9e3790ff..dc99c857 100644 --- a/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md +++ b/docs/classes/YooKassa-Common-Exceptions-NotFoundException.md @@ -152,6 +152,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md b/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md index 396d26fb..5418dd42 100644 --- a/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md +++ b/docs/classes/YooKassa-Common-Exceptions-ResponseProcessingException.md @@ -152,6 +152,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md b/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md index a7dcd25d..2181face 100644 --- a/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md +++ b/docs/classes/YooKassa-Common-Exceptions-TooManyRequestsException.md @@ -152,6 +152,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md b/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md index d840155a..3d02ef1d 100644 --- a/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md +++ b/docs/classes/YooKassa-Common-Exceptions-UnauthorizedException.md @@ -155,6 +155,6 @@ public getResponseHeaders() : string[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-HttpVerb.md b/docs/classes/YooKassa-Common-HttpVerb.md index ac0f6492..d3460b03 100644 --- a/docs/classes/YooKassa-Common-HttpVerb.md +++ b/docs/classes/YooKassa-Common-HttpVerb.md @@ -179,6 +179,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-LoggerWrapper.md b/docs/classes/YooKassa-Common-LoggerWrapper.md index 44b87b7f..043594fc 100644 --- a/docs/classes/YooKassa-Common-LoggerWrapper.md +++ b/docs/classes/YooKassa-Common-LoggerWrapper.md @@ -299,6 +299,6 @@ that are not necessarily wrong. --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Common-ResponseObject.md b/docs/classes/YooKassa-Common-ResponseObject.md index e5c70607..2ca89585 100644 --- a/docs/classes/YooKassa-Common-ResponseObject.md +++ b/docs/classes/YooKassa-Common-ResponseObject.md @@ -162,6 +162,6 @@ public getHeaders() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md index 993fb2b8..7c88bd38 100644 --- a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md +++ b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoader.md @@ -73,6 +73,6 @@ public load(mixed $filePath = null) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md index 1b9c62f0..2ae6c3ed 100644 --- a/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md +++ b/docs/classes/YooKassa-Helpers-Config-ConfigurationLoaderInterface.md @@ -64,6 +64,6 @@ public load() : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-ProductCode.md b/docs/classes/YooKassa-Helpers-ProductCode.md index 7213e418..2d903c8d 100644 --- a/docs/classes/YooKassa-Helpers-ProductCode.md +++ b/docs/classes/YooKassa-Helpers-ProductCode.md @@ -635,6 +635,6 @@ public validate() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-Random.md b/docs/classes/YooKassa-Helpers-Random.md index 9d5cf6d1..b76ff3f5 100644 --- a/docs/classes/YooKassa-Helpers-Random.md +++ b/docs/classes/YooKassa-Helpers-Random.md @@ -243,6 +243,6 @@ Static public value(array $values, bool $useBest = true) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-RawHeadersParser.md b/docs/classes/YooKassa-Helpers-RawHeadersParser.md index 883bc9cf..d4a9c32a 100644 --- a/docs/classes/YooKassa-Helpers-RawHeadersParser.md +++ b/docs/classes/YooKassa-Helpers-RawHeadersParser.md @@ -57,6 +57,6 @@ Static public parse(mixed $rawHeaders) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-SecurityHelper.md b/docs/classes/YooKassa-Helpers-SecurityHelper.md index 4040e251..a81c0be4 100644 --- a/docs/classes/YooKassa-Helpers-SecurityHelper.md +++ b/docs/classes/YooKassa-Helpers-SecurityHelper.md @@ -66,6 +66,6 @@ public isIPTrusted($ip) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-StringObject.md b/docs/classes/YooKassa-Helpers-StringObject.md index 622e37da..2f579ab2 100644 --- a/docs/classes/YooKassa-Helpers-StringObject.md +++ b/docs/classes/YooKassa-Helpers-StringObject.md @@ -83,6 +83,6 @@ public __toString() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-TypeCast.md b/docs/classes/YooKassa-Helpers-TypeCast.md index d1e9763f..6e5cc512 100644 --- a/docs/classes/YooKassa-Helpers-TypeCast.md +++ b/docs/classes/YooKassa-Helpers-TypeCast.md @@ -162,6 +162,6 @@ Static public castToDateTime(string|int|\DateTime $value) : \DateTime|null --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Helpers-UUID.md b/docs/classes/YooKassa-Helpers-UUID.md index 30331586..7076af1f 100644 --- a/docs/classes/YooKassa-Helpers-UUID.md +++ b/docs/classes/YooKassa-Helpers-UUID.md @@ -57,6 +57,6 @@ Static public v4() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Airline.md b/docs/classes/YooKassa-Model-Airline.md index 8eb64528..8f4ad1a7 100644 --- a/docs/classes/YooKassa-Model-Airline.md +++ b/docs/classes/YooKassa-Model-Airline.md @@ -666,6 +666,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-AirlineInterface.md b/docs/classes/YooKassa-Model-AirlineInterface.md index 48ee8131..10108e99 100644 --- a/docs/classes/YooKassa-Model-AirlineInterface.md +++ b/docs/classes/YooKassa-Model-AirlineInterface.md @@ -108,6 +108,6 @@ public getLegs() : \YooKassa\Model\LegInterface[] --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-AmountInterface.md b/docs/classes/YooKassa-Model-AmountInterface.md index 988d0fcd..680b405f 100644 --- a/docs/classes/YooKassa-Model-AmountInterface.md +++ b/docs/classes/YooKassa-Model-AmountInterface.md @@ -147,6 +147,6 @@ public setCurrency(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-AuthorizationDetails.md b/docs/classes/YooKassa-Model-AuthorizationDetails.md index 84a843b9..fa854b5e 100644 --- a/docs/classes/YooKassa-Model-AuthorizationDetails.md +++ b/docs/classes/YooKassa-Model-AuthorizationDetails.md @@ -516,6 +516,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-AuthorizationDetailsInterface.md b/docs/classes/YooKassa-Model-AuthorizationDetailsInterface.md index 7dc2e406..50850e44 100644 --- a/docs/classes/YooKassa-Model-AuthorizationDetailsInterface.md +++ b/docs/classes/YooKassa-Model-AuthorizationDetailsInterface.md @@ -102,6 +102,6 @@ public getThreeDSecure() : \YooKassa\Model\ThreeDSecure|null --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-BaseDeal.md b/docs/classes/YooKassa-Model-BaseDeal.md index 5b8ea575..b0361457 100644 --- a/docs/classes/YooKassa-Model-BaseDeal.md +++ b/docs/classes/YooKassa-Model-BaseDeal.md @@ -371,6 +371,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CancellationDetails.md b/docs/classes/YooKassa-Model-CancellationDetails.md index 7dff841a..4ff3527a 100644 --- a/docs/classes/YooKassa-Model-CancellationDetails.md +++ b/docs/classes/YooKassa-Model-CancellationDetails.md @@ -449,6 +449,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CancellationDetailsInterface.md b/docs/classes/YooKassa-Model-CancellationDetailsInterface.md index c198ae80..313f6d06 100644 --- a/docs/classes/YooKassa-Model-CancellationDetailsInterface.md +++ b/docs/classes/YooKassa-Model-CancellationDetailsInterface.md @@ -83,6 +83,6 @@ public getReason() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-CancellationDetailsPartyCode.md index 08567d88..7d318c84 100644 --- a/docs/classes/YooKassa-Model-CancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-CancellationDetailsPartyCode.md @@ -153,6 +153,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-CancellationDetailsReasonCode.md index 6b653b40..160de42b 100644 --- a/docs/classes/YooKassa-Model-CancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-CancellationDetailsReasonCode.md @@ -330,6 +330,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-AbstractConfirmation.md b/docs/classes/YooKassa-Model-Confirmation-AbstractConfirmation.md index cc7e03f2..50f11e6e 100644 --- a/docs/classes/YooKassa-Model-Confirmation-AbstractConfirmation.md +++ b/docs/classes/YooKassa-Model-Confirmation-AbstractConfirmation.md @@ -442,6 +442,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationCodeVerification.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationCodeVerification.md index f1d8b6e7..06e47592 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationCodeVerification.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationCodeVerification.md @@ -435,6 +435,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationEmbedded.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationEmbedded.md index 92902804..48d153f7 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationEmbedded.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationEmbedded.md @@ -481,6 +481,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationExternal.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationExternal.md index f05c5830..ea82e920 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationExternal.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationExternal.md @@ -436,6 +436,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationFactory.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationFactory.md index 17cebf3e..6ee1f750 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationFactory.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationFactory.md @@ -89,6 +89,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Model --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationMobileApplication.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationMobileApplication.md index e726494a..48c3c877 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationMobileApplication.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationMobileApplication.md @@ -559,6 +559,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationQr.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationQr.md index 832768ed..7753b70a 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationQr.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationQr.md @@ -494,6 +494,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Confirmation-ConfirmationRedirect.md b/docs/classes/YooKassa-Model-Confirmation-ConfirmationRedirect.md index c0aa167e..ab8a71fd 100644 --- a/docs/classes/YooKassa-Model-Confirmation-ConfirmationRedirect.md +++ b/docs/classes/YooKassa-Model-Confirmation-ConfirmationRedirect.md @@ -602,6 +602,6 @@ protected setType(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-AbstractConfirmationAttributes.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-AbstractConfirmationAttributes.md index 5b29082f..08a4fc98 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-AbstractConfirmationAttributes.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-AbstractConfirmationAttributes.md @@ -413,6 +413,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesCodeVerification.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesCodeVerification.md index 1f4d801c..0736f305 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesCodeVerification.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesCodeVerification.md @@ -406,6 +406,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesEmbedded.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesEmbedded.md index 3f8eb79a..6557ab65 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesEmbedded.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesEmbedded.md @@ -406,6 +406,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesExternal.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesExternal.md index 296eff7b..7cb193ec 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesExternal.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesExternal.md @@ -407,6 +407,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesFactory.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesFactory.md index 800128d2..f73350b9 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesFactory.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesFactory.md @@ -81,6 +81,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Model --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md index 2babae29..0df7d81b 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesMobileApplication.md @@ -470,6 +470,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesQr.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesQr.md index 3b6ff82f..197dbd4d 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesQr.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesQr.md @@ -406,6 +406,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesRedirect.md b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesRedirect.md index 593139db..b4a3a244 100644 --- a/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesRedirect.md +++ b/docs/classes/YooKassa-Model-ConfirmationAttributes-ConfirmationAttributesRedirect.md @@ -513,6 +513,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ConfirmationType.md b/docs/classes/YooKassa-Model-ConfirmationType.md index 5ae6aca5..56daef6f 100644 --- a/docs/classes/YooKassa-Model-ConfirmationType.md +++ b/docs/classes/YooKassa-Model-ConfirmationType.md @@ -179,6 +179,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-CurrencyCode.md b/docs/classes/YooKassa-Model-CurrencyCode.md index 93c4964f..6ce272b7 100644 --- a/docs/classes/YooKassa-Model-CurrencyCode.md +++ b/docs/classes/YooKassa-Model-CurrencyCode.md @@ -193,6 +193,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-CaptureDealData.md b/docs/classes/YooKassa-Model-Deal-CaptureDealData.md index 0c62810b..cd452151 100644 --- a/docs/classes/YooKassa-Model-Deal-CaptureDealData.md +++ b/docs/classes/YooKassa-Model-Deal-CaptureDealData.md @@ -415,6 +415,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md b/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md index 8cfda3c9..9cb3f86d 100644 --- a/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md +++ b/docs/classes/YooKassa-Model-Deal-DealBalanceAmount.md @@ -481,6 +481,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealStatus.md b/docs/classes/YooKassa-Model-Deal-DealStatus.md index 93e4b64e..9e96308f 100644 --- a/docs/classes/YooKassa-Model-Deal-DealStatus.md +++ b/docs/classes/YooKassa-Model-Deal-DealStatus.md @@ -144,6 +144,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-DealType.md b/docs/classes/YooKassa-Model-Deal-DealType.md index 9743406e..3b1126b5 100644 --- a/docs/classes/YooKassa-Model-Deal-DealType.md +++ b/docs/classes/YooKassa-Model-Deal-DealType.md @@ -133,6 +133,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-FeeMoment.md b/docs/classes/YooKassa-Model-Deal-FeeMoment.md index 987fca03..69626a25 100644 --- a/docs/classes/YooKassa-Model-Deal-FeeMoment.md +++ b/docs/classes/YooKassa-Model-Deal-FeeMoment.md @@ -143,6 +143,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md b/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md index 2118d53c..65cf37b6 100644 --- a/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-PaymentDealInfo.md @@ -469,6 +469,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md b/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md index 48a124aa..17304ed3 100644 --- a/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-PayoutDealInfo.md @@ -392,6 +392,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-RefundDealData.md b/docs/classes/YooKassa-Model-Deal-RefundDealData.md index 0d7d868d..e4c00f31 100644 --- a/docs/classes/YooKassa-Model-Deal-RefundDealData.md +++ b/docs/classes/YooKassa-Model-Deal-RefundDealData.md @@ -428,6 +428,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md b/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md index a6da2501..7cb3eaad 100644 --- a/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md +++ b/docs/classes/YooKassa-Model-Deal-RefundDealInfo.md @@ -482,6 +482,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md index 29866788..cc509fc2 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPayment.md @@ -448,6 +448,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md index 38ec54d7..689f2e28 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutPaymentType.md @@ -131,6 +131,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md b/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md index 18c70297..f88f363e 100644 --- a/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md +++ b/docs/classes/YooKassa-Model-Deal-SettlementPayoutRefund.md @@ -452,6 +452,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-DealInterface.md b/docs/classes/YooKassa-Model-DealInterface.md index e7f0fec4..dbf4f206 100644 --- a/docs/classes/YooKassa-Model-DealInterface.md +++ b/docs/classes/YooKassa-Model-DealInterface.md @@ -258,6 +258,6 @@ public getTest() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Leg.md b/docs/classes/YooKassa-Model-Leg.md index 921cc97b..8ca294a2 100644 --- a/docs/classes/YooKassa-Model-Leg.md +++ b/docs/classes/YooKassa-Model-Leg.md @@ -584,6 +584,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-LegInterface.md b/docs/classes/YooKassa-Model-LegInterface.md index 9ed55d65..bc9304de 100644 --- a/docs/classes/YooKassa-Model-LegInterface.md +++ b/docs/classes/YooKassa-Model-LegInterface.md @@ -159,6 +159,6 @@ public setDepartureDate(\DateTime|string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Locale.md b/docs/classes/YooKassa-Model-Locale.md index a4873075..da16fa87 100644 --- a/docs/classes/YooKassa-Model-Locale.md +++ b/docs/classes/YooKassa-Model-Locale.md @@ -143,6 +143,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Metadata.md b/docs/classes/YooKassa-Model-Metadata.md index d45b5eb0..0027ea86 100644 --- a/docs/classes/YooKassa-Model-Metadata.md +++ b/docs/classes/YooKassa-Model-Metadata.md @@ -377,6 +377,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-MonetaryAmount.md b/docs/classes/YooKassa-Model-MonetaryAmount.md index a217665b..cbd1e749 100644 --- a/docs/classes/YooKassa-Model-MonetaryAmount.md +++ b/docs/classes/YooKassa-Model-MonetaryAmount.md @@ -541,6 +541,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-AbstractNotification.md b/docs/classes/YooKassa-Model-Notification-AbstractNotification.md index af9cff92..01707a89 100644 --- a/docs/classes/YooKassa-Model-Notification-AbstractNotification.md +++ b/docs/classes/YooKassa-Model-Notification-AbstractNotification.md @@ -573,6 +573,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md b/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md index 28b05d46..48ba3e67 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationCanceled.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md b/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md index 744c800d..f32218ea 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationDealClosed.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationFactory.md b/docs/classes/YooKassa-Model-Notification-NotificationFactory.md index 888a404e..f39a23f7 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationFactory.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationFactory.md @@ -140,6 +140,6 @@ public factory(array $data) : \YooKassa\Model\Notification\AbstractNotification --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationInterface.md b/docs/classes/YooKassa-Model-Notification-NotificationInterface.md index 6514faad..195c1d84 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationInterface.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationInterface.md @@ -104,6 +104,6 @@ public getObject() : \YooKassa\Model\PaymentInterface|\YooKassa\Model\RefundInte --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md b/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md index a2ed1ad4..70724023 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationPayoutCanceled.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md index 0ea99aff..f8a66388 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationPayoutSucceeded.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md index 9a8cbbff..eca3925f 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationRefundSucceeded.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md b/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md index 97afb78c..9f1ab41f 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationSucceeded.md @@ -598,6 +598,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md b/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md index f8f44773..86d1ecca 100644 --- a/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md +++ b/docs/classes/YooKassa-Model-Notification-NotificationWaitingForCapture.md @@ -603,6 +603,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-NotificationEventType.md b/docs/classes/YooKassa-Model-NotificationEventType.md index 79edf4b8..992ca927 100644 --- a/docs/classes/YooKassa-Model-NotificationEventType.md +++ b/docs/classes/YooKassa-Model-NotificationEventType.md @@ -202,6 +202,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-NotificationType.md b/docs/classes/YooKassa-Model-NotificationType.md index 42261de3..93253467 100644 --- a/docs/classes/YooKassa-Model-NotificationType.md +++ b/docs/classes/YooKassa-Model-NotificationType.md @@ -131,6 +131,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Passenger.md b/docs/classes/YooKassa-Model-Passenger.md index ba978dfe..69b2c208 100644 --- a/docs/classes/YooKassa-Model-Passenger.md +++ b/docs/classes/YooKassa-Model-Passenger.md @@ -490,6 +490,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PassengerInterface.md b/docs/classes/YooKassa-Model-PassengerInterface.md index d5c5f07c..53523a36 100644 --- a/docs/classes/YooKassa-Model-PassengerInterface.md +++ b/docs/classes/YooKassa-Model-PassengerInterface.md @@ -118,6 +118,6 @@ public setLastName(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payment.md b/docs/classes/YooKassa-Model-Payment.md index 2be77691..b2d29148 100644 --- a/docs/classes/YooKassa-Model-Payment.md +++ b/docs/classes/YooKassa-Model-Payment.md @@ -1808,6 +1808,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-AbstractPaymentData.md b/docs/classes/YooKassa-Model-PaymentData-AbstractPaymentData.md index 4a90c993..b998262d 100644 --- a/docs/classes/YooKassa-Model-PaymentData-AbstractPaymentData.md +++ b/docs/classes/YooKassa-Model-PaymentData-AbstractPaymentData.md @@ -392,6 +392,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatData.md b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatData.md index aaf800eb..e92f6ea9 100644 --- a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatData.md +++ b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatData.md @@ -516,6 +516,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataInterface.md b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataInterface.md index 78cac05c..3b05e0f0 100644 --- a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataInterface.md +++ b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataInterface.md @@ -102,6 +102,6 @@ public getAmount() : \YooKassa\Model\AmountInterface --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataRate.md b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataRate.md index aeecab1f..7cf3456d 100644 --- a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataRate.md +++ b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataRate.md @@ -169,6 +169,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataType.md b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataType.md index 036ddf0c..00eedd37 100644 --- a/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataType.md +++ b/docs/classes/YooKassa-Model-PaymentData-B2b-Sberbank-VatDataType.md @@ -158,6 +158,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataAlfabank.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataAlfabank.md index 7cac50ff..02ff8748 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataAlfabank.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataAlfabank.md @@ -440,6 +440,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataApplePay.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataApplePay.md index 206e7803..96c8d146 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataApplePay.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataApplePay.md @@ -466,6 +466,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataB2bSberbank.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataB2bSberbank.md index 90dde46f..d91b9d4f 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataB2bSberbank.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataB2bSberbank.md @@ -494,6 +494,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCard.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCard.md index 5859f50c..cb0c4366 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCard.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCard.md @@ -440,6 +440,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCardCard.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCardCard.md index 8b935240..e4018709 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCardCard.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataBankCardCard.md @@ -635,6 +635,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataCash.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataCash.md index 95979d77..51e07b59 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataCash.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataCash.md @@ -440,6 +440,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataFactory.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataFactory.md index 3037e605..674c8ac8 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataFactory.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataFactory.md @@ -89,6 +89,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Model --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataGooglePay.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataGooglePay.md index 4a5b2417..7212b420 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataGooglePay.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataGooglePay.md @@ -494,6 +494,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataInstallments.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataInstallments.md index cdbbbe85..b1d4da09 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataInstallments.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataInstallments.md @@ -385,6 +385,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataMobileBalance.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataMobileBalance.md index e41d6da1..377136ac 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataMobileBalance.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataMobileBalance.md @@ -436,6 +436,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataQiwi.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataQiwi.md index 4ed08edd..efa3260b 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataQiwi.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataQiwi.md @@ -427,6 +427,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataSberbank.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataSberbank.md index 4a653d33..7ad96da9 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataSberbank.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataSberbank.md @@ -436,6 +436,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataSbp.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataSbp.md index 5225f59d..c6889124 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataSbp.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataSbp.md @@ -385,6 +385,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataTinkoffBank.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataTinkoffBank.md index fffd46dc..cd01cfb9 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataTinkoffBank.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataTinkoffBank.md @@ -385,6 +385,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataWebmoney.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataWebmoney.md index b945ee46..f074bc1f 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataWebmoney.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataWebmoney.md @@ -386,6 +386,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataWechat.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataWechat.md index 44e21204..86f17cfa 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataWechat.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataWechat.md @@ -391,6 +391,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentData-PaymentDataYooMoney.md b/docs/classes/YooKassa-Model-PaymentData-PaymentDataYooMoney.md index ab55fe76..01d82722 100644 --- a/docs/classes/YooKassa-Model-PaymentData-PaymentDataYooMoney.md +++ b/docs/classes/YooKassa-Model-PaymentData-PaymentDataYooMoney.md @@ -385,6 +385,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentInterface.md b/docs/classes/YooKassa-Model-PaymentInterface.md index 51a353cc..ddaf49b5 100644 --- a/docs/classes/YooKassa-Model-PaymentInterface.md +++ b/docs/classes/YooKassa-Model-PaymentInterface.md @@ -428,6 +428,6 @@ public getDeal() : \YooKassa\Model\Deal\PaymentDealInfo --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-AbstractPaymentMethod.md b/docs/classes/YooKassa-Model-PaymentMethod-AbstractPaymentMethod.md index 5c66f319..82ed5cdb 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-AbstractPaymentMethod.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-AbstractPaymentMethod.md @@ -541,6 +541,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetails.md b/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetails.md index c5886110..9ac5e63e 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetails.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetails.md @@ -826,6 +826,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md b/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md index e7fecc8c..683964e0 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-B2b-Sberbank-PayerBankDetailsInterface.md @@ -216,6 +216,6 @@ public getAccount() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-BankCard.md b/docs/classes/YooKassa-Model-PaymentMethod-BankCard.md index c7868f69..baf57a95 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-BankCard.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-BankCard.md @@ -855,6 +855,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-BankCardSource.md b/docs/classes/YooKassa-Model-PaymentMethod-BankCardSource.md index 92e7af8b..f0a00e6c 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-BankCardSource.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-BankCardSource.md @@ -152,6 +152,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodAlfaBank.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodAlfaBank.md index 15604442..6bf48e0e 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodAlfaBank.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodAlfaBank.md @@ -603,6 +603,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodApplePay.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodApplePay.md index 7abf3c29..d9d58a38 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodApplePay.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodApplePay.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodB2bSberbank.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodB2bSberbank.md index 2628ac37..84a469a7 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodB2bSberbank.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodB2bSberbank.md @@ -724,6 +724,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodBankCard.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodBankCard.md index 86cfb843..a79b7312 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodBankCard.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodBankCard.md @@ -781,6 +781,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCardType.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCardType.md index 49b99c13..ed0e957b 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCardType.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCardType.md @@ -195,6 +195,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCash.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCash.md index bb60e576..312a06df 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCash.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodCash.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodFactory.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodFactory.md index b2c166a9..b59878ed 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodFactory.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodFactory.md @@ -103,6 +103,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Model --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodGooglePay.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodGooglePay.md index 78e6ed06..fca93a2e 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodGooglePay.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodGooglePay.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodInstallments.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodInstallments.md index d60ac27e..fd86fa67 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodInstallments.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodInstallments.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodMobileBalance.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodMobileBalance.md index 43a9e268..906ef406 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodMobileBalance.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodMobileBalance.md @@ -603,6 +603,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodPsb.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodPsb.md index 7ffd5db3..2e6cbb84 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodPsb.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodPsb.md @@ -536,6 +536,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodQiwi.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodQiwi.md index df058087..25ab4a59 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodQiwi.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodQiwi.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSberbank.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSberbank.md index 5a0292c4..3a5931f1 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSberbank.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSberbank.md @@ -853,6 +853,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSbp.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSbp.md index c4c686c2..e6597d0b 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSbp.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodSbp.md @@ -536,6 +536,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodTinkoffBank.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodTinkoffBank.md index eb5e8419..3edb561f 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodTinkoffBank.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodTinkoffBank.md @@ -536,6 +536,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWebmoney.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWebmoney.md index b8a8ee49..b99f387d 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWebmoney.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWebmoney.md @@ -549,6 +549,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWechat.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWechat.md index 0b6aabe5..43044a84 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWechat.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodWechat.md @@ -542,6 +542,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodYooMoney.md b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodYooMoney.md index 8348c739..afa787fa 100644 --- a/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodYooMoney.md +++ b/docs/classes/YooKassa-Model-PaymentMethod-PaymentMethodYooMoney.md @@ -616,6 +616,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentMethodType.md b/docs/classes/YooKassa-Model-PaymentMethodType.md index 07a4e484..69fff571 100644 --- a/docs/classes/YooKassa-Model-PaymentMethodType.md +++ b/docs/classes/YooKassa-Model-PaymentMethodType.md @@ -303,6 +303,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PaymentStatus.md b/docs/classes/YooKassa-Model-PaymentStatus.md index 385d3f31..f544214e 100644 --- a/docs/classes/YooKassa-Model-PaymentStatus.md +++ b/docs/classes/YooKassa-Model-PaymentStatus.md @@ -169,6 +169,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md b/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md index 34ba3780..f3e847dd 100644 --- a/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md +++ b/docs/classes/YooKassa-Model-Payout-AbstractPayoutDestination.md @@ -392,6 +392,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md index e0558876..5868259a 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetails.md @@ -448,6 +448,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md index f0f56a57..0fca39b9 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsPartyCode.md @@ -153,6 +153,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md index 0bae5d59..93aaad71 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutCancellationDetailsReasonCode.md @@ -173,6 +173,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md index e9127e6c..9b04f421 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCard.md @@ -440,6 +440,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md index 4140924d..1ed85c70 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationBankCardCard.md @@ -668,6 +668,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md index 27650548..89742b15 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationFactory.md @@ -89,6 +89,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Model --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md index 932d785f..f30ca1e2 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationType.md @@ -123,6 +123,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md b/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md index c9f3eaa8..2c3f4f16 100644 --- a/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md +++ b/docs/classes/YooKassa-Model-Payout-PayoutDestinationYooMoney.md @@ -465,6 +465,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Payout.md b/docs/classes/YooKassa-Model-Payout.md index e10d60e0..426ed74f 100644 --- a/docs/classes/YooKassa-Model-Payout.md +++ b/docs/classes/YooKassa-Model-Payout.md @@ -962,6 +962,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PayoutInterface.md b/docs/classes/YooKassa-Model-PayoutInterface.md index ef54b92e..594a7469 100644 --- a/docs/classes/YooKassa-Model-PayoutInterface.md +++ b/docs/classes/YooKassa-Model-PayoutInterface.md @@ -238,6 +238,6 @@ public getTest() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-PayoutStatus.md b/docs/classes/YooKassa-Model-PayoutStatus.md index 92869cd1..06d7bee3 100644 --- a/docs/classes/YooKassa-Model-PayoutStatus.md +++ b/docs/classes/YooKassa-Model-PayoutStatus.md @@ -158,6 +158,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md b/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md index 3abc774f..95e36c9e 100644 --- a/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md +++ b/docs/classes/YooKassa-Model-Receipt-AdditionalUserProps.md @@ -469,6 +469,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-AgentType.md b/docs/classes/YooKassa-Model-Receipt-AgentType.md index 31e08dee..a172b5ca 100644 --- a/docs/classes/YooKassa-Model-Receipt-AgentType.md +++ b/docs/classes/YooKassa-Model-Receipt-AgentType.md @@ -179,6 +179,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md b/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md index 3b685c8a..15d58997 100644 --- a/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md +++ b/docs/classes/YooKassa-Model-Receipt-IndustryDetails.md @@ -633,6 +633,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md b/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md index ff903b12..d75bc210 100644 --- a/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md +++ b/docs/classes/YooKassa-Model-Receipt-MarkCodeInfo.md @@ -965,6 +965,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md b/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md index 8539a88e..e64506c6 100644 --- a/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md +++ b/docs/classes/YooKassa-Model-Receipt-MarkQuantity.md @@ -461,6 +461,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md b/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md index cf5d7b25..2f9568dc 100644 --- a/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md +++ b/docs/classes/YooKassa-Model-Receipt-OperationalDetails.md @@ -558,6 +558,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-PaymentMode.md b/docs/classes/YooKassa-Model-Receipt-PaymentMode.md index 08d13914..a440379f 100644 --- a/docs/classes/YooKassa-Model-Receipt-PaymentMode.md +++ b/docs/classes/YooKassa-Model-Receipt-PaymentMode.md @@ -179,6 +179,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md b/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md index 799520d0..edbc4415 100644 --- a/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md +++ b/docs/classes/YooKassa-Model-Receipt-PaymentSubject.md @@ -387,6 +387,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md index 098d86f6..4a0e488b 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItemAmount.md @@ -538,6 +538,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md b/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md index a7c38d71..4c6b36d1 100644 --- a/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md +++ b/docs/classes/YooKassa-Model-Receipt-ReceiptItemMeasure.md @@ -318,6 +318,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt-SettlementType.md b/docs/classes/YooKassa-Model-Receipt-SettlementType.md index 52fa4f41..3759dd49 100644 --- a/docs/classes/YooKassa-Model-Receipt-SettlementType.md +++ b/docs/classes/YooKassa-Model-Receipt-SettlementType.md @@ -155,6 +155,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Receipt.md b/docs/classes/YooKassa-Model-Receipt.md index c3042ced..8d6d96c5 100644 --- a/docs/classes/YooKassa-Model-Receipt.md +++ b/docs/classes/YooKassa-Model-Receipt.md @@ -1045,6 +1045,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptCustomer.md b/docs/classes/YooKassa-Model-ReceiptCustomer.md index 6bcf677f..c64c09d1 100644 --- a/docs/classes/YooKassa-Model-ReceiptCustomer.md +++ b/docs/classes/YooKassa-Model-ReceiptCustomer.md @@ -608,6 +608,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptCustomerInterface.md b/docs/classes/YooKassa-Model-ReceiptCustomerInterface.md index eb77a252..da2e3900 100644 --- a/docs/classes/YooKassa-Model-ReceiptCustomerInterface.md +++ b/docs/classes/YooKassa-Model-ReceiptCustomerInterface.md @@ -140,6 +140,6 @@ public jsonSerialize() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptInterface.md b/docs/classes/YooKassa-Model-ReceiptInterface.md index ec30a8a4..910a13dc 100644 --- a/docs/classes/YooKassa-Model-ReceiptInterface.md +++ b/docs/classes/YooKassa-Model-ReceiptInterface.md @@ -181,6 +181,6 @@ public normalize(\YooKassa\Model\AmountInterface $orderAmount, bool $withShippin --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptItem.md b/docs/classes/YooKassa-Model-ReceiptItem.md index 3117cb59..fd2078f8 100644 --- a/docs/classes/YooKassa-Model-ReceiptItem.md +++ b/docs/classes/YooKassa-Model-ReceiptItem.md @@ -1707,6 +1707,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptItemInterface.md b/docs/classes/YooKassa-Model-ReceiptItemInterface.md index f76a4a2b..31701e20 100644 --- a/docs/classes/YooKassa-Model-ReceiptItemInterface.md +++ b/docs/classes/YooKassa-Model-ReceiptItemInterface.md @@ -436,6 +436,6 @@ public isShipping() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptRegistrationStatus.md b/docs/classes/YooKassa-Model-ReceiptRegistrationStatus.md index 9315c0af..0f63446a 100644 --- a/docs/classes/YooKassa-Model-ReceiptRegistrationStatus.md +++ b/docs/classes/YooKassa-Model-ReceiptRegistrationStatus.md @@ -155,6 +155,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ReceiptType.md b/docs/classes/YooKassa-Model-ReceiptType.md index 06a6663e..84babd20 100644 --- a/docs/classes/YooKassa-Model-ReceiptType.md +++ b/docs/classes/YooKassa-Model-ReceiptType.md @@ -154,6 +154,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Recipient.md b/docs/classes/YooKassa-Model-Recipient.md index 5cffb028..82646069 100644 --- a/docs/classes/YooKassa-Model-Recipient.md +++ b/docs/classes/YooKassa-Model-Recipient.md @@ -494,6 +494,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-RecipientInterface.md b/docs/classes/YooKassa-Model-RecipientInterface.md index 7dc115b0..282c583a 100644 --- a/docs/classes/YooKassa-Model-RecipientInterface.md +++ b/docs/classes/YooKassa-Model-RecipientInterface.md @@ -94,6 +94,6 @@ public getGatewayId() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Refund.md b/docs/classes/YooKassa-Model-Refund.md index 65c646b6..4943ca59 100644 --- a/docs/classes/YooKassa-Model-Refund.md +++ b/docs/classes/YooKassa-Model-Refund.md @@ -944,6 +944,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-RefundInterface.md b/docs/classes/YooKassa-Model-RefundInterface.md index 1c111fa3..a5264019 100644 --- a/docs/classes/YooKassa-Model-RefundInterface.md +++ b/docs/classes/YooKassa-Model-RefundInterface.md @@ -218,6 +218,6 @@ public getDeal() : \YooKassa\Model\Deal\RefundDealInfo --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-RefundStatus.md b/docs/classes/YooKassa-Model-RefundStatus.md index 6702df99..6ead1336 100644 --- a/docs/classes/YooKassa-Model-RefundStatus.md +++ b/docs/classes/YooKassa-Model-RefundStatus.md @@ -152,6 +152,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Requestor.md b/docs/classes/YooKassa-Model-Requestor.md index ad9eb5e3..efa93d71 100644 --- a/docs/classes/YooKassa-Model-Requestor.md +++ b/docs/classes/YooKassa-Model-Requestor.md @@ -637,6 +637,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-RequestorInterface.md b/docs/classes/YooKassa-Model-RequestorInterface.md index a1b7ac8e..210c010f 100644 --- a/docs/classes/YooKassa-Model-RequestorInterface.md +++ b/docs/classes/YooKassa-Model-RequestorInterface.md @@ -217,6 +217,6 @@ public setClientName(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SafeDeal.md b/docs/classes/YooKassa-Model-SafeDeal.md index c9fd5a53..be842f26 100644 --- a/docs/classes/YooKassa-Model-SafeDeal.md +++ b/docs/classes/YooKassa-Model-SafeDeal.md @@ -858,6 +858,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Settlement.md b/docs/classes/YooKassa-Model-Settlement.md index 6272de65..8bc488c5 100644 --- a/docs/classes/YooKassa-Model-Settlement.md +++ b/docs/classes/YooKassa-Model-Settlement.md @@ -448,6 +448,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SettlementInterface.md b/docs/classes/YooKassa-Model-SettlementInterface.md index de154053..30e58717 100644 --- a/docs/classes/YooKassa-Model-SettlementInterface.md +++ b/docs/classes/YooKassa-Model-SettlementInterface.md @@ -83,6 +83,6 @@ public getAmount() : \YooKassa\Model\AmountInterface --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Source.md b/docs/classes/YooKassa-Model-Source.md index 9ddf0f65..705110c5 100644 --- a/docs/classes/YooKassa-Model-Source.md +++ b/docs/classes/YooKassa-Model-Source.md @@ -570,6 +570,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SourceInterface.md b/docs/classes/YooKassa-Model-SourceInterface.md index 9a9aca7b..9e46c676 100644 --- a/docs/classes/YooKassa-Model-SourceInterface.md +++ b/docs/classes/YooKassa-Model-SourceInterface.md @@ -207,6 +207,6 @@ public setPlatformFeeAmount(\YooKassa\Model\AmountInterface|array $value) : mixe --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Supplier.md b/docs/classes/YooKassa-Model-Supplier.md index 6d586d45..13fb0ea5 100644 --- a/docs/classes/YooKassa-Model-Supplier.md +++ b/docs/classes/YooKassa-Model-Supplier.md @@ -505,6 +505,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-SupplierInterface.md b/docs/classes/YooKassa-Model-SupplierInterface.md index f7df9720..6eea4b7b 100644 --- a/docs/classes/YooKassa-Model-SupplierInterface.md +++ b/docs/classes/YooKassa-Model-SupplierInterface.md @@ -177,6 +177,6 @@ public setInn($value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-ThreeDSecure.md b/docs/classes/YooKassa-Model-ThreeDSecure.md index 75acb896..a3212443 100644 --- a/docs/classes/YooKassa-Model-ThreeDSecure.md +++ b/docs/classes/YooKassa-Model-ThreeDSecure.md @@ -397,6 +397,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Transfer.md b/docs/classes/YooKassa-Model-Transfer.md index 473bdebd..0c9b0954 100644 --- a/docs/classes/YooKassa-Model-Transfer.md +++ b/docs/classes/YooKassa-Model-Transfer.md @@ -814,6 +814,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-TransferInterface.md b/docs/classes/YooKassa-Model-TransferInterface.md index 38a17a5f..2c2a2bb4 100644 --- a/docs/classes/YooKassa-Model-TransferInterface.md +++ b/docs/classes/YooKassa-Model-TransferInterface.md @@ -374,6 +374,6 @@ public hasMetadata() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-TransferStatus.md b/docs/classes/YooKassa-Model-TransferStatus.md index f9581e53..1f4e9f05 100644 --- a/docs/classes/YooKassa-Model-TransferStatus.md +++ b/docs/classes/YooKassa-Model-TransferStatus.md @@ -161,6 +161,6 @@ Static public valueExists(mixed $value) : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Model-Webhook-Webhook.md b/docs/classes/YooKassa-Model-Webhook-Webhook.md index 9bbd3691..897b5e58 100644 --- a/docs/classes/YooKassa-Model-Webhook-Webhook.md +++ b/docs/classes/YooKassa-Model-Webhook-Webhook.md @@ -500,6 +500,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md b/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md index 23533c1d..38028c51 100644 --- a/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-AbstractDealResponse.md @@ -861,6 +861,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md index 27140865..af93f702 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequest.md @@ -766,6 +766,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md index 8fc7e77d..bfd92d7e 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestBuilder.md @@ -353,6 +353,6 @@ protected initCurrentObject() : \YooKassa\Request\Deals\CreateDealRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md index 0b998bc8..729348ba 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestInterface.md @@ -286,6 +286,6 @@ public setMetadata(\YooKassa\Model\Metadata|array|null $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md b/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md index 4db429a8..7ef48c73 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Deals\CreateDealRequestInterface|\YooKassa\Co --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md b/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md index 0b10fac5..f9676371 100644 --- a/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-CreateDealResponse.md @@ -860,6 +860,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealResponse.md b/docs/classes/YooKassa-Request-Deals-DealResponse.md index 58027575..e17596e2 100644 --- a/docs/classes/YooKassa-Request-Deals-DealResponse.md +++ b/docs/classes/YooKassa-Request-Deals-DealResponse.md @@ -860,6 +860,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequest.md b/docs/classes/YooKassa-Request-Deals-DealsRequest.md index 23248e5b..9109a222 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequest.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequest.md @@ -1394,6 +1394,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md b/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md index cb983153..06f7d024 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestBuilder.md @@ -498,6 +498,6 @@ protected initCurrentObject() : \YooKassa\Request\Deals\DealsRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md b/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md index 5907ceb2..b046c195 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestInterface.md @@ -765,6 +765,6 @@ public setFullTextSearch(string $value) : void --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md b/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md index 048a49bc..665f5fd8 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Deals-DealsRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Deals\DealsRequest|\YooKassa\Request\Deals\De --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Deals-DealsResponse.md b/docs/classes/YooKassa-Request-Deals-DealsResponse.md index 3a866c3a..153f1bc0 100644 --- a/docs/classes/YooKassa-Request-Deals-DealsResponse.md +++ b/docs/classes/YooKassa-Request-Deals-DealsResponse.md @@ -389,6 +389,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md b/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md index a17116b7..1d2ad383 100644 --- a/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-AbstractPaymentResponse.md @@ -1850,6 +1850,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md index cd402f64..34a99167 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequest.md @@ -1866,6 +1866,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md index fd1bf8b2..472fd71d 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestBuilder.md @@ -1089,6 +1089,6 @@ protected initCurrentObject() : \YooKassa\Request\Payments\CreatePaymentRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md index cb21ee10..1b1a1b8a 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestInterface.md @@ -955,6 +955,6 @@ public setMerchantCustomerId(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md index 6de0ac50..6186137b 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Payments\CreatePaymentRequestInterface $reque --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md b/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md index 43b71a8a..d50cdc56 100644 --- a/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-CreatePaymentResponse.md @@ -1844,6 +1844,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CancelResponse.md b/docs/classes/YooKassa-Request-Payments-Payment-CancelResponse.md index a9402e5e..aec19f1e 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CancelResponse.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CancelResponse.md @@ -1844,6 +1844,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequest.md b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequest.md index afb77770..1dfd8e23 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequest.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequest.md @@ -787,6 +787,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestBuilder.md index cb0c6006..a1ee153c 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestBuilder.md @@ -506,6 +506,6 @@ protected initCurrentObject() : \YooKassa\Request\Payments\Payment\CreateCapture --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestInterface.md b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestInterface.md index 62ddfea4..5d09bd70 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestInterface.md @@ -296,6 +296,6 @@ public setDeal(\YooKassa\Model\Deal\PaymentDealInfo|array|null $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestSerializer.md index 3ad2f3cd..5e610e45 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Payments\Payment\CreateCaptureRequestInterfac --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureResponse.md b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureResponse.md index ca4d2a27..80e42b5d 100644 --- a/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureResponse.md +++ b/docs/classes/YooKassa-Request-Payments-Payment-CreateCaptureResponse.md @@ -1844,6 +1844,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentResponse.md b/docs/classes/YooKassa-Request-Payments-PaymentResponse.md index 191042ec..c3fe7c41 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentResponse.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentResponse.md @@ -1844,6 +1844,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md index 9214a891..8bb0fdb9 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequest.md @@ -1384,6 +1384,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md index 112af507..0028ba73 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestBuilder.md @@ -498,6 +498,6 @@ protected initCurrentObject() : \YooKassa\Request\Payments\PaymentsRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md index eb487cb2..2edaeb90 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestInterface.md @@ -765,6 +765,6 @@ public setPaymentMethod(string $value) : void --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md b/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md index e3d81d38..3072973d 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Payments\PaymentsRequestInterface $request) : --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md b/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md index 4ef13db2..92707339 100644 --- a/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md +++ b/docs/classes/YooKassa-Request-Payments-PaymentsResponse.md @@ -389,6 +389,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md index 56ea45c7..149c5e02 100644 --- a/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-AbstractPayoutResponse.md @@ -978,6 +978,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md index f9bbf921..79adc5ce 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequest.md @@ -926,6 +926,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md index c4ee5a7a..a672ebce 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestBuilder.md @@ -407,6 +407,6 @@ protected initCurrentObject() : \YooKassa\Request\Payouts\CreatePayoutRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md index dbb11b14..160a406b 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestInterface.md @@ -407,6 +407,6 @@ public setMetadata(\YooKassa\Model\Metadata|array|null $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md index 3c0d4eb2..34245ef4 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Payouts\CreatePayoutRequestInterface $request --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md index a9277393..b6439d35 100644 --- a/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-CreatePayoutResponse.md @@ -977,6 +977,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md index 90114e1e..866a7b61 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-AbstractPayoutDestinationData.md @@ -407,6 +407,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md index 5bf70284..e0234700 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCard.md @@ -455,6 +455,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md index b734caa3..3fefd09f 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataBankCardCard.md @@ -395,6 +395,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md index ab075b36..fa2e2c22 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataFactory.md @@ -92,6 +92,6 @@ public factoryFromArray(array $data, string|null $type = null) : \YooKassa\Reque --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md index ba341d1f..e737f6f5 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutDestinationData-PayoutDestinationDataYooMoney.md @@ -483,6 +483,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md b/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md index 3c524fe3..eff9cffc 100644 --- a/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md +++ b/docs/classes/YooKassa-Request-Payouts-PayoutResponse.md @@ -977,6 +977,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md index b66f80d0..43ae30ae 100644 --- a/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-AbstractReceiptResponse.md @@ -1461,6 +1461,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md index fdc2abee..ee9ee21a 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequest.md @@ -1104,6 +1104,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md index 5fd61203..95b0c8e2 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestBuilder.md @@ -598,6 +598,6 @@ protected initCurrentObject() : \YooKassa\Request\Receipts\CreatePostReceiptRequ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md index 6da36799..d6b4b553 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestInterface.md @@ -577,6 +577,6 @@ public notEmpty() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md index 975051e9..973a5598 100644 --- a/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Receipts-CreatePostReceiptRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Receipts\CreatePostReceiptRequestInterface $r --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md index 4945a3a9..1eacd2d1 100644 --- a/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-PaymentReceiptResponse.md @@ -1565,6 +1565,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md index 187fd6ae..1735a5ed 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseFactory.md @@ -65,6 +65,6 @@ public factory(array $data) : \YooKassa\Request\Receipts\AbstractReceiptResponse --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md index 635b6979..8a2bf8cb 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseInterface.md @@ -214,6 +214,6 @@ public notEmpty() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md index 529c493a..1e46e9c8 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItem.md @@ -1513,6 +1513,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md index 1778cb51..ec606700 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptResponseItemInterface.md @@ -378,6 +378,6 @@ public getSupplier() : \YooKassa\Model\SupplierInterface --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md index 9821832b..7bb40148 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequest.md @@ -1144,6 +1144,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md index c10e4931..e44e0e50 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestBuilder.md @@ -411,6 +411,6 @@ protected initCurrentObject() : \YooKassa\Request\Receipts\ReceiptsRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md index 5493fc53..5e640ef6 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestInterface.md @@ -378,6 +378,6 @@ public hasLimit() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md index 71e72748..0f385735 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Receipts\ReceiptsRequestInterface $request) : --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md b/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md index 5290ea93..5f6ee3f4 100644 --- a/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-ReceiptsResponse.md @@ -142,6 +142,6 @@ public hasNextCursor() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md index 9019b6a4..6e7298a0 100644 --- a/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-RefundReceiptResponse.md @@ -1565,6 +1565,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md b/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md index ad5ac376..ca13620b 100644 --- a/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md +++ b/docs/classes/YooKassa-Request-Receipts-SimpleReceiptResponse.md @@ -1482,6 +1482,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md b/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md index 650ebacd..7d6729b4 100644 --- a/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-AbstractRefundResponse.md @@ -959,6 +959,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md index 99d3c60b..7fd29499 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequest.md @@ -980,6 +980,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md index 0a04880f..403fe2ef 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestBuilder.md @@ -624,6 +624,6 @@ protected initCurrentObject() : \YooKassa\Request\Refunds\CreateRefundRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md index b8284603..1fbc3484 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestInterface.md @@ -339,6 +339,6 @@ public hasDeal() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md index 26ff5896..41238f67 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Refunds\CreateRefundRequestInterface $request --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md b/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md index 7a5c4e9c..c1ed7301 100644 --- a/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-CreateRefundResponse.md @@ -955,6 +955,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundResponse.md b/docs/classes/YooKassa-Request-Refunds-RefundResponse.md index 6f076f82..68df6ac4 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundResponse.md @@ -955,6 +955,6 @@ protected getUnknownProperties() : array --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md index 6aed58fd..a5771f97 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequest.md @@ -1072,6 +1072,6 @@ protected setValidationError(string $value) : mixed --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md index b2e76eca..3ef95f37 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestBuilder.md @@ -382,6 +382,6 @@ protected initCurrentObject() : \YooKassa\Request\Refunds\RefundsRequest --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md index 75baa463..56c1eec2 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestInterface.md @@ -305,6 +305,6 @@ public hasCursor() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md b/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md index 86f69cea..59e0bd9d 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsRequestSerializer.md @@ -65,6 +65,6 @@ public serialize(\YooKassa\Request\Refunds\RefundsRequestInterface $request) : a --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md b/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md index 8d152b4e..26d8f81f 100644 --- a/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md +++ b/docs/classes/YooKassa-Request-Refunds-RefundsResponse.md @@ -124,6 +124,6 @@ public hasNextCursor() : bool --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md b/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md index 1876fadf..ebc045d5 100644 --- a/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md +++ b/docs/classes/YooKassa-Request-Webhook-WebhookListResponse.md @@ -101,6 +101,6 @@ public getType() : string --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/examples/01-configuration.md b/docs/examples/01-configuration.md index 1a4a481e..12a0cbba 100644 --- a/docs/examples/01-configuration.md +++ b/docs/examples/01-configuration.md @@ -5,12 +5,37 @@ С помощью этого SDK вы можете работать с онлайн-платежами: отправлять запросы на оплату, сохранять платежную информацию для повторных списаний, совершать возвраты и многое другое. +* [Установка дополнительных настроек для Curl](#Установка-дополнительных-настроек-для-Curl) * [Аутентификация](#Аутентификация) * [Статистические данные об используемом окружении](#Статистические-данные-об-используемом-окружении) * [Получение информации о магазине](#Получение-информации-о-магазине) * [Работа с Webhook](#Работа-с-Webhook) * [Входящие уведомления](#Входящие-уведомления) +--- +### Установка дополнительных настроек для Curl + +Чтобы установить дополнительные настройки Curl, можно воспользоваться методом `setAdvancedCurlOptions` класса `\YooKassa\Client\CurlClient`, +создав свой класс Curl клиента c наследованием от `\YooKassa\Client\CurlClient`. Далее можно переопределить метод `setAdvancedCurlOptions` и задать в нем установку +своих параметров методом `setCurlOption`. + +Создаем класс: +```php +class CustomCurlClient extends \YooKassa\Client\CurlClient +{ + public function setAdvancedCurlOptions() + { + $this->setCurlOption(CURLOPT_SSL_VERIFYPEER, false); + } +} +``` + +И применяем новый класс: +```php +$client = new \YooKassa\Client(new CustomCurlClient()); +$client->setAuth('xxxxxx', 'test_XXXXXXX'); +``` + --- ### Аутентификация diff --git a/docs/examples/02-payments.md b/docs/examples/02-payments.md index dd602b96..ffbedee2 100644 --- a/docs/examples/02-payments.md +++ b/docs/examples/02-payments.md @@ -174,7 +174,7 @@ try { $request->setDescription($request->getDescription() . ' - merchant comment'); $idempotenceKey = uniqid('', true); - $response = $client->createPayment($request); + $response = $client->createPayment($request, $idempotenceKey); //получаем confirmationUrl для дальнейшего редиректа $confirmationUrl = $response->getConfirmation()->getConfirmationUrl(); diff --git a/docs/namespaces/default.md b/docs/namespaces/default.md index 60456142..383edf36 100644 --- a/docs/namespaces/default.md +++ b/docs/namespaces/default.md @@ -52,6 +52,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-client.md b/docs/namespaces/yookassa-client.md index 3d2023ee..ab8c6275 100644 --- a/docs/namespaces/yookassa-client.md +++ b/docs/namespaces/yookassa-client.md @@ -33,6 +33,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-common-exceptions.md b/docs/namespaces/yookassa-common-exceptions.md index e02726c8..3f2e6fee 100644 --- a/docs/namespaces/yookassa-common-exceptions.md +++ b/docs/namespaces/yookassa-common-exceptions.md @@ -41,6 +41,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-common.md b/docs/namespaces/yookassa-common.md index 4c9707d6..d0c4591b 100644 --- a/docs/namespaces/yookassa-common.md +++ b/docs/namespaces/yookassa-common.md @@ -38,6 +38,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-helpers-config.md b/docs/namespaces/yookassa-helpers-config.md index 5f4699b8..a9beb7a4 100644 --- a/docs/namespaces/yookassa-helpers-config.md +++ b/docs/namespaces/yookassa-helpers-config.md @@ -31,6 +31,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-helpers.md b/docs/namespaces/yookassa-helpers.md index e51cc9bc..f0caf945 100644 --- a/docs/namespaces/yookassa-helpers.md +++ b/docs/namespaces/yookassa-helpers.md @@ -35,6 +35,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-confirmation.md b/docs/namespaces/yookassa-model-confirmation.md index 6f739642..2606a0e7 100644 --- a/docs/namespaces/yookassa-model-confirmation.md +++ b/docs/namespaces/yookassa-model-confirmation.md @@ -32,6 +32,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-confirmationattributes.md b/docs/namespaces/yookassa-model-confirmationattributes.md index a94d1a4c..d47bc1f7 100644 --- a/docs/namespaces/yookassa-model-confirmationattributes.md +++ b/docs/namespaces/yookassa-model-confirmationattributes.md @@ -32,6 +32,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-deal.md b/docs/namespaces/yookassa-model-deal.md index a1f758c0..46a0fd0b 100644 --- a/docs/namespaces/yookassa-model-deal.md +++ b/docs/namespaces/yookassa-model-deal.md @@ -36,6 +36,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-notification.md b/docs/namespaces/yookassa-model-notification.md index 8b157f56..78f35a3e 100644 --- a/docs/namespaces/yookassa-model-notification.md +++ b/docs/namespaces/yookassa-model-notification.md @@ -39,6 +39,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentdata-b2b-sberbank.md b/docs/namespaces/yookassa-model-paymentdata-b2b-sberbank.md index a2e05420..87370e05 100644 --- a/docs/namespaces/yookassa-model-paymentdata-b2b-sberbank.md +++ b/docs/namespaces/yookassa-model-paymentdata-b2b-sberbank.md @@ -33,6 +33,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentdata-b2b.md b/docs/namespaces/yookassa-model-paymentdata-b2b.md index 47f7b877..e8904b2e 100644 --- a/docs/namespaces/yookassa-model-paymentdata-b2b.md +++ b/docs/namespaces/yookassa-model-paymentdata-b2b.md @@ -23,6 +23,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentdata.md b/docs/namespaces/yookassa-model-paymentdata.md index d8f44aeb..2cff2f2d 100644 --- a/docs/namespaces/yookassa-model-paymentdata.md +++ b/docs/namespaces/yookassa-model-paymentdata.md @@ -46,6 +46,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentmethod-b2b-sberbank.md b/docs/namespaces/yookassa-model-paymentmethod-b2b-sberbank.md index 551a7c38..bfc9208d 100644 --- a/docs/namespaces/yookassa-model-paymentmethod-b2b-sberbank.md +++ b/docs/namespaces/yookassa-model-paymentmethod-b2b-sberbank.md @@ -31,6 +31,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentmethod-b2b.md b/docs/namespaces/yookassa-model-paymentmethod-b2b.md index 770fbbf9..a85ba412 100644 --- a/docs/namespaces/yookassa-model-paymentmethod-b2b.md +++ b/docs/namespaces/yookassa-model-paymentmethod-b2b.md @@ -23,6 +23,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-paymentmethod.md b/docs/namespaces/yookassa-model-paymentmethod.md index 9ce497f0..4398c0de 100644 --- a/docs/namespaces/yookassa-model-paymentmethod.md +++ b/docs/namespaces/yookassa-model-paymentmethod.md @@ -49,6 +49,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-payout.md b/docs/namespaces/yookassa-model-payout.md index 0ccfc374..5518a12f 100644 --- a/docs/namespaces/yookassa-model-payout.md +++ b/docs/namespaces/yookassa-model-payout.md @@ -33,6 +33,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-receipt.md b/docs/namespaces/yookassa-model-receipt.md index 862fd4dd..cab75661 100644 --- a/docs/namespaces/yookassa-model-receipt.md +++ b/docs/namespaces/yookassa-model-receipt.md @@ -35,6 +35,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model-webhook.md b/docs/namespaces/yookassa-model-webhook.md index bcf893ea..f0da35da 100644 --- a/docs/namespaces/yookassa-model-webhook.md +++ b/docs/namespaces/yookassa-model-webhook.md @@ -25,6 +25,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-model.md b/docs/namespaces/yookassa-model.md index 5dd71962..3a0d967c 100644 --- a/docs/namespaces/yookassa-model.md +++ b/docs/namespaces/yookassa-model.md @@ -96,6 +96,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-deals.md b/docs/namespaces/yookassa-request-deals.md index fb5dc0e3..51877471 100644 --- a/docs/namespaces/yookassa-request-deals.md +++ b/docs/namespaces/yookassa-request-deals.md @@ -41,6 +41,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments-payment.md b/docs/namespaces/yookassa-request-payments-payment.md index c5143495..68989391 100644 --- a/docs/namespaces/yookassa-request-payments-payment.md +++ b/docs/namespaces/yookassa-request-payments-payment.md @@ -35,6 +35,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payments.md b/docs/namespaces/yookassa-request-payments.md index 1d751ac2..d7c9a7ef 100644 --- a/docs/namespaces/yookassa-request-payments.md +++ b/docs/namespaces/yookassa-request-payments.md @@ -45,6 +45,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md b/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md index c275cb1c..dc00d485 100644 --- a/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md +++ b/docs/namespaces/yookassa-request-payouts-payoutdestinationdata.md @@ -29,6 +29,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-payouts.md b/docs/namespaces/yookassa-request-payouts.md index bec139f8..229092b2 100644 --- a/docs/namespaces/yookassa-request-payouts.md +++ b/docs/namespaces/yookassa-request-payouts.md @@ -40,6 +40,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-receipts.md b/docs/namespaces/yookassa-request-receipts.md index fcb01af5..ec85bb1f 100644 --- a/docs/namespaces/yookassa-request-receipts.md +++ b/docs/namespaces/yookassa-request-receipts.md @@ -46,6 +46,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-refunds.md b/docs/namespaces/yookassa-request-refunds.md index b5efdc97..aae67f59 100644 --- a/docs/namespaces/yookassa-request-refunds.md +++ b/docs/namespaces/yookassa-request-refunds.md @@ -41,6 +41,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request-webhook.md b/docs/namespaces/yookassa-request-webhook.md index cf040cb3..24970472 100644 --- a/docs/namespaces/yookassa-request-webhook.md +++ b/docs/namespaces/yookassa-request-webhook.md @@ -25,6 +25,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa-request.md b/docs/namespaces/yookassa-request.md index 66747a3c..e2247138 100644 --- a/docs/namespaces/yookassa-request.md +++ b/docs/namespaces/yookassa-request.md @@ -28,6 +28,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/namespaces/yookassa.md b/docs/namespaces/yookassa.md index 8d6cf31a..62f69cde 100644 --- a/docs/namespaces/yookassa.md +++ b/docs/namespaces/yookassa.md @@ -33,6 +33,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/readme.md b/docs/readme.md index bc7d6e3b..6d27db20 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -52,6 +52,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/reports/deprecated.md b/docs/reports/deprecated.md index 705408fc..74bd3f25 100644 --- a/docs/reports/deprecated.md +++ b/docs/reports/deprecated.md @@ -92,6 +92,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/reports/errors.md b/docs/reports/errors.md index 76343531..4d42c16d 100644 --- a/docs/reports/errors.md +++ b/docs/reports/errors.md @@ -18,6 +18,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/docs/reports/markers.md b/docs/reports/markers.md index af85a7d6..5ce5f548 100644 --- a/docs/reports/markers.md +++ b/docs/reports/markers.md @@ -18,6 +18,6 @@ --- -This document was automatically generated from source code comments on 2023-02-13 using [phpDocumentor](http://www.phpdoc.org/) +This document was automatically generated from source code comments on 2023-03-09 using [phpDocumentor](http://www.phpdoc.org/) © 2023 YooMoney \ No newline at end of file diff --git a/lib/Client.php b/lib/Client.php index e5bc5ac8..e46de76f 100644 --- a/lib/Client.php +++ b/lib/Client.php @@ -112,7 +112,7 @@ class Client extends BaseClient /** * Текущая версия библиотеки */ - const SDK_VERSION = '2.7.6'; + const SDK_VERSION = '2.7.7'; /** * Получить список платежей магазина diff --git a/lib/Client/ApiClientInterface.php b/lib/Client/ApiClientInterface.php index d3e675f0..916c6716 100644 --- a/lib/Client/ApiClientInterface.php +++ b/lib/Client/ApiClientInterface.php @@ -93,4 +93,11 @@ interface ApiClientInterface * @param array $config */ public function setConfig($config); + + /** + * Устанавливает дополнительные настройки curl + * + * @return void + */ + public function setAdvancedCurlOptions(); } diff --git a/lib/Client/CurlClient.php b/lib/Client/CurlClient.php index c61de1a8..d2421193 100644 --- a/lib/Client/CurlClient.php +++ b/lib/Client/CurlClient.php @@ -534,5 +534,14 @@ class CurlClient implements ApiClientInterface $this->setCurlOption(CURLOPT_CONNECTTIMEOUT, $this->connectionTimeout); $this->setCurlOption(CURLOPT_TIMEOUT, $this->timeout); + + $this->setAdvancedCurlOptions(); + } + + /** + * @return void + */ + public function setAdvancedCurlOptions() + { } } diff --git a/phpdoc.xml b/phpdoc.xml index a3876611..0bed2116 100644 --- a/phpdoc.xml +++ b/phpdoc.xml @@ -9,7 +9,7 @@ .phpdoc - + latest