File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,8 @@ PHP 8.4 UPGRADE NOTES
137
137
138
138
- SOAP:
139
139
. SoapClient::$httpurl is now a Soap\Url object rather than a resource.
140
- Value checks using is_resource() should be replaced with checks for `null`.
140
+ Checks using is_resource() (i.e. is_resource($soapClient->httpurl)) should
141
+ be replaced with checks for null (i.e. $soapClient->httpurl !== null).
141
142
. SoapClient::$sdl is now a Soap\Sdl object rather than a resource.
142
143
Value checks using is_resource() should be replaced with checks for `null`.
143
144
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ static zend_always_inline zval *php_soap_deref(zval *zv) {
253
253
#define Z_CLIENT_LAST_REQUEST_HEADERS_P (zv ) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 34))
254
254
#define Z_CLIENT_LAST_RESPONSE_HEADERS_P (zv ) php_soap_deref(OBJ_PROP_NUM(Z_OBJ_P(zv), 35))
255
255
256
- typedef struct {
256
+ typedef struct soap_url_object {
257
257
php_url * url ;
258
258
zend_object std ;
259
259
} soap_url_object ;
You can’t perform that action at this time.
0 commit comments