docusign-esign-php-client
docusign-esign-php-client copied to clipboard
Fix PHP 8.4 deprecations
Implicitly marking parameter $data as nullable is deprecated, the explicit nullable type must be used instead
Issue #235
Replaced all matches:
__construct(array $data = null)
->
__construct(?array $data = null)