WsdlToPhp\PackageGenerator\Model\Struct::getContextualPart PHP Метод

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

Returns the contextual part of the class name for the package
См. также: AbstractModel::getContextualPart()
public getContextualPart ( ) : string
Результат string
    public function getContextualPart()
    {
        $part = $this->getGenerator()->getOptionStructsFolder();
        if ($this->getIsRestriction()) {
            $part = $this->getGenerator()->getOptionEnumsFolder();
        } elseif ($this->isArray()) {
            $part = $this->getGenerator()->getOptionArraysFolder();
        }
        return $part;
    }