Caffeinated\Menus\Item::__get PHP Метод

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

Return either a property or attribute item value.
public __get ( string $property ) : string
$property string
Результат string
    public function __get($property)
    {
        if (property_exists($this, $property)) {
            return $this->{$property};
        }
        return $this->data($property);
    }