Swagger\Context::__get PHP 메소드

__get() 공개 메소드

Traverse the context tree to get the property value.
public __get ( string $property ) : mixed
$property string
리턴 mixed
    public function __get($property)
    {
        if ($this->_parent) {
            return $this->_parent->{$property};
        }
        return null;
    }