Swagger\Context::__get PHP Méthode

__get() public méthode

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