docusign-esign-php-client icon indicating copy to clipboard operation
docusign-esign-php-client copied to clipboard

Fix PHP 8.4 deprecations

Open khaperets opened this issue 7 months ago • 2 comments

Implicitly marking parameter $data as nullable is deprecated, the explicit nullable type must be used instead

khaperets avatar Sep 26 '25 11:09 khaperets

Issue #235

khaperets avatar Sep 26 '25 11:09 khaperets

Replaced all matches: __construct(array $data = null) -> __construct(?array $data = null)

khaperets avatar Sep 26 '25 11:09 khaperets