Phpro\SoapClient\Soap\ClassMap\ClassMap::getWsdlType PHP Method

getWsdlType() public method

public getWsdlType ( ) : string
return string
    public function getWsdlType()
    {
        return $this->wsdlType;
    }

Usage Example

 function let(ClassMap $classMap)
 {
     $classMap->getWsdlType()->willReturn('WsdlType');
     $classMap->getPhpClassName()->willReturn('PhpClass');
     $this->beConstructedWith([$classMap]);
 }