You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are bundling this library within our extension through composer and we've been working on PHP 8.4 compatibility and I ran into several deprecation messages about using an explicit nullable type.
Deprecated: Vendor\Google\Client::authorize(): Implicitly marking parameter $http as nullable is deprecated, the explicit nullable type must be used instead in vendor/google/apiclient/src/Client.php on line 451
- public function authorize(ClientInterface $http = null)+ public function authorize(?ClientInterface $http = null)
Deprecated: Vendor\Google\Client::fetchAccessTokenWithAssertion(): Implicitly marking parameter $authHttp as nullable is deprecated, the explicit nullable type must be used instead in vendor/google/apiclient/src/Client.php on line 318
- public function fetchAccessTokenWithAssertion(ClientInterface $authHttp = null)+ public function fetchAccessTokenWithAssertion(?ClientInterface $authHttp = null)
Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
vendor/google/apiclient/src/Service/Exception.php:39
We are bundling this library within our extension through composer and we've been working on PHP 8.4 compatibility and I ran into several deprecation messages about using an explicit nullable type.
Environment details
The text was updated successfully, but these errors were encountered: