Swagger\Context::__get PHP Method

__get() public method

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