Lavary\Menu\Item::__get PHP Метод

__get() публичный Метод

Search in meta data if a property doesn't exist otherwise return the property
public __get ( $prop ) : string
Результат string
    public function __get($prop)
    {
        if (property_exists($this, $prop)) {
            return $this->{$prop};
        }
        return $this->data($prop);
    }