v-noskov

Results 7 comments of v-noskov

Php changed behavior of `json_last_error` with major version changing. Component `zend-json` doesn't change major or even minor version. In my opinion, it must preserve backward compatibility and fix issue on...

#2277 is a quick reproduction of this bug. When I dropped `#[\OpenApi\Attributes\Property(type: 'string')]` and `@OA\Property(type = "string")` from the User::location property, this property was included in 'required' array. It's just...

@ondrejmirtes I've added PR that demonstrates the issue. If you agree, I can try to fix it by changing \PHPStan\Type\Doctrine\Descriptors\BinaryType::getWritableToPropertyType.

I'm adding a full list of deprecations from docusign-esign-php-client v.8.0.0. You can get the same list using PHP 8.4 linter `php -l` [docusign_deprecations.txt](https://github.com/user-attachments/files/19780617/docusign_deprecations.txt)

@prudhvik-docusign Please, fix this issue too: ``` Deprecated: DocuSign\eSign\Client\Auth\OAuthToken::__construct(): Implicitly marking parameter $data as nullable is deprecated, the explicit nullable type must be used instead ``` Additionally, I've attached a...

It seems that #92 resolves the issue

I see two possible ways to address the issue: 1. Always require a non-nullable property when using simple_array mapping. This approach aligns the property type with the behaviour of the...