added method stubs to SoapServer

This commit is contained in:
Christian Kerl 2011-10-03 13:35:37 +02:00
parent 824919b537
commit 3bb6d3abd4
1 changed files with 10 additions and 2 deletions

View File

@ -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);
}
}