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;
    }