Larabros\Elogram\Http\Sessions\NativeSessionStore::__construct PHP 메소드

__construct() 공개 메소드

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