Lavary\Menu\Link::__get PHP Method

__get() public method

Check for a method of the same name if the attribute doesn't exist.
public __get ( $prop ) : void
return void
    public function __get($prop)
    {
        if (property_exists($this, $prop)) {
            return $this->{$prop};
        }
        return $this->attr($prop);
    }