braintree / braintree_php

Braintree PHP library
https://developer.paypal.com/braintree/docs/start/overview
MIT License
545 stars 225 forks source link

lib/Braintree/GraphQLClient: php 8.2 deprecation warning due to missing property #324

Closed mvoelker closed 1 year ago

mvoelker commented 1 year ago

General information

Issue description

Generated warning: Deprecated: Creation of dynamic property Braintree\GraphQLClient::$_service is deprecated in [...]/vendor/braintree/braintree_php/lib/Braintree/GraphQLClient.php on line 14

Solution

Add this line to the top of the class body /lib/Braintree/GraphQLClient.php:

...
    /**
     * @var GraphQL|null
     */
    protected $_service = null;
...
DPoplin commented 1 year ago

Hey @mvoelker thanks for reporting this! We will be taking a look at this and following up with any additional questions as they arise.

For internal reference: DTBTSDK-2159