Go\Lang\Annotation\BaseAnnotation::__get PHP Method

__get() public method

Error handler for unknown property accessor in Annotation class.
public __get ( string $name )
$name string Unknown property name
    public function __get($name)
    {
        throw new \BadMethodCallException(sprintf("Unknown property '%s' on annotation '%s'.", $name, get_class($this)));
    }