a:11:{s:7:"version";s:3:"2.3";s:7:"methods";a:1:{i:0;O:13:"PhpWsdlMethod":7:{s:5:"Param";a:0:{}s:6:"Return";O:12:"PhpWsdlParam":5:{s:4:"Type";s:6:"string";s:4:"Docs";s:8:"Response";s:4:"GUID";s:13:"6a40c5345d6a2";s:4:"Name";s:6:"return";s:8:"Settings";N;}s:8:"IsGlobal";b:1;s:4:"GUID";s:13:"6a40c5345d703";s:4:"Name";s:16:"GlobalMethodDemo";s:4:"Docs";s:201:"This is how to define a global method for WSDL. A setting was not required since the
PhpWsdlMethod::$IsGlobalDefault property was set to TRUE so every method is handled
as global method per default now";s:8:"Settings";N;}}s:5:"types";a:0:{}s:5:"files";a:1:{i:0;s:74:"/var/www/stalker_portal old/vendor/rock/phpwsdl/src/Rock/PhpWsdl/demo5.php";}s:4:"name";s:14:"SoapWebService";s:4:"docs";N;s:4:"html";N;s:3:"php";s:1056:"<?php
/**
 * @service SoapWebServiceSoapClient
 */
class SoapWebServiceSoapClient{
	/**
	 * The WSDL URI
	 *
	 * @var string
	 */
	public static $_WsdlUri='http://wpp831744611.wp-pro.io/stalker_portal old/vendor/rock/phpwsdl/src/Rock/PhpWsdl/demo5.php?WSDL';
	/**
	 * The PHP SoapClient object
	 *
	 * @var object
	 */
	public static $_Server=null;

	/**
	 * Send a SOAP request to the server
	 *
	 * @param string $method The method name
	 * @param array $param The parameters
	 * @return mixed The server response
	 */
	public static function _Call($method,$param){
		if(is_null(self::$_Server))
			self::$_Server=new SoapClient(self::$_WsdlUri);
		return self::$_Server->__soapCall($method,$param);
	}

	/**
	 * This is how to define a global method for WSDL. A setting was not required since the
	 * PhpWsdlMethod::$IsGlobalDefault property was set to TRUE so every method is handled
	 * as global method per default now
	 *
	 * @return string Response
	 */
	public function GlobalMethodDemo(){
		return self::_Call('GlobalMethodDemo',Array(
		));
	}
}";s:7:"wsdluri";N;s:6:"phpuri";N;s:6:"docuri";N;}