Skip to content

Commit

Permalink
Fix : Property declared dynamically
Browse files Browse the repository at this point in the history
  • Loading branch information
s-renier-taonix-fr authored and f3l1x committed Feb 13, 2023
1 parent 51411ae commit 2c0ccb2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2132,6 +2132,9 @@ class soapval extends nusoap_base
* @access private
*/
var $attributes;

/** @var false|resource */
var $fp;

/**
* constructor
Expand Down Expand Up @@ -2228,6 +2231,9 @@ class soap_transport_http extends nusoap_base
// certpassword: SSL certificate password
// verifypeer: default is 1
// verifyhost: default is 1

/** @var false|resource */
var $fp;

/**
* constructor
Expand Down Expand Up @@ -3707,6 +3713,9 @@ class nusoap_server extends nusoap_base
* @access public
*/
var $debug_flag = false;

/** @var array */
var $opData;


/**
Expand Down Expand Up @@ -4754,6 +4763,13 @@ class wsdl extends nusoap_base
var $password = ''; // Password for HTTP authentication
var $authtype = ''; // Type of HTTP authentication
var $certRequest = array(); // Certificate for HTTP SSL authentication

/** @var mixed */
var $currentPortOperation;
/** @var string */
var $opStatus;
/** @var mixed */
var $serviceName;

/**
* constructor
Expand Down Expand Up @@ -7488,6 +7504,11 @@ class nusoap_client extends nusoap_base
* @access public
*/
var $faultdetail;

/** @var wsdl|null */
var $wsdl;
/** @var mixed */
var $wsdlFile;

/**
* constructor
Expand Down

0 comments on commit 2c0ccb2

Please sign in to comment.