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 @@ -140,7 +140,8 @@ PHP 8.4 UPGRADE NOTES
140
140
Checks using is_resource() (i.e. is_resource($soapClient->httpurl)) should
141
141
be replaced with checks for null (i.e. $soapClient->httpurl !== null).
142
142
. SoapClient::$sdl is now a Soap\Sdl object rather than a resource.
143
- Value checks using is_resource() should be replaced with checks for `null`.
143
+ Checks using is_resource() (i.e. is_resource($soapClient->sdl)) should be
144
+ replaced with checks for null (i.e. $soapClient->sdl !== null).
144
145
145
146
- SPL:
146
147
. Out of bounds accesses in SplFixedArray now throw an exception of type
Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ static inline soap_url_object *soap_url_object_fetch(zend_object *obj)
265
265
266
266
#define Z_SOAP_URL_P (zv ) soap_url_object_fetch(Z_OBJ_P(zv))
267
267
268
- typedef struct {
268
+ typedef struct soap_sdl_object {
269
269
sdl * sdl ;
270
270
zend_object std ;
271
271
} soap_sdl_object ;
You can’t perform that action at this time.
0 commit comments