Nette\Http\SessionSection::offsetGet PHP Метод

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

Gets a variable from this session section.
public offsetGet ( $name ) : mixed
Результат mixed
    public function offsetGet($name)
    {
        return $this->__get($name);
    }

Usage Example

Пример #1
0
 /**
  * @param  string
  * @return mixed
  */
 public function get($name)
 {
     return $this->session->offsetGet($name);
 }