Fixtures\WsdlProvider::rpcLiteral PHP Method

rpcLiteral() public static method

public static rpcLiteral ( )
    public static function rpcLiteral()
    {
        return Path::join(__DIR__, 'generated_wsdl', 'rpc_literal.wsdl');
    }

Usage Example

 protected function setUp()
 {
     parent::setUp();
     $this->markTestSkipped('Integration tests');
     $this->soapClient = new SoapClient(WsdlProvider::rpcLiteral(), ['cache_wsdl' => WSDL_CACHE_NONE, 'trace' => true]);
 }
WsdlProvider