Nette\Http\SessionSection::offsetGet PHP Method

offsetGet() public method

Gets a variable from this session section.
public offsetGet ( $name ) : mixed
return mixed
    public function offsetGet($name)
    {
        return $this->__get($name);
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @param  string
  * @return mixed
  */
 public function get($name)
 {
     return $this->session->offsetGet($name);
 }