Larabros\Elogram\Http\Sessions\NativeSessionStore::get PHP Method

get() public method

{@inheritDoc}
public get ( $key )
    public function get($key)
    {
        if (isset($_SESSION[$this->sessionPrefix . $key])) {
            return $_SESSION[$this->sessionPrefix . $key];
        }
        return null;
    }
NativeSessionStore