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

__construct() public method

Creates an instance of :php:class:NativeSessionStore.
public __construct ( )
    public function __construct()
    {
        if (session_status() !== PHP_SESSION_ACTIVE) {
            throw new Exception('Sessions are not active.');
        }
    }
NativeSessionStore