Phpro\SoapClient\Soap\SoapClient::getSoapElementType PHP Метод

getSoapElementType() публичный Метод

Get a SOAP type’s element
public getSoapElementType ( string $complexType, string $element ) : string
$complexType string Name of SOAP complexType
$element string Name of element belonging to SOAP complexType
Результат string
    public function getSoapElementType($complexType, $element)
    {
        $elements = $this->getSoapElements($complexType);
        if ($elements && isset($elements[$element])) {
            return $elements[$element];
        }
    }