Adamgoose\Routing\Annotations\Annotations\Annotation::__get PHP Method

__get() public method

Dynamically get a property on the annotation.
public __get ( string $key ) : mixed
$key string
return mixed
    public function __get($key)
    {
        if ($this->offsetExists($key)) {
            return $this->values[$key];
        }
    }