added method stubs to SoapServer
This commit is contained in:
parent
824919b537
commit
3bb6d3abd4
|
@ -17,5 +17,13 @@ namespace BeSimple\SoapServer;
|
|||
*/
|
||||
class SoapServer extends \SoapServer
|
||||
{
|
||||
|
||||
}
|
||||
public function __construct($wsdl, array $options = array())
|
||||
{
|
||||
parent::__construct($wsdl, $options);
|
||||
}
|
||||
|
||||
public function handle($soap_request = null)
|
||||
{
|
||||
parent::handle($soap_request);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue