CSoapObjectWrapper
CSoapObjectWrapper is a wrapper class internally used when SoapServer::setObject() is not defined.
Public Properties
| Property |
Type |
Description |
Defined By |
| object | object | the service provider | CSoapObjectWrapper |
Public Methods
| Method |
Description |
Defined By |
| __call() | PHP __call magic method. | CSoapObjectWrapper |
| __construct() | Constructor. | CSoapObjectWrapper |
Property Details
public object $object;
the service provider
Method Details
public mixed __call(string $name, array $arguments) |
| $name | string | method name |
| $arguments | array | method arguments |
| {return} | mixed | method return value |
PHP __call magic method. This method calls the service provider to execute the actual logic.
public void __construct(object $object) |
| $object | object | the service provider |
Constructor.