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

getPhpClassName() public method

public getPhpClassName ( ) : string
return string
    public function getPhpClassName()
    {
        return $this->phpClassName;
    }

Usage Example

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