lithium\storage\session\adapter\Cookie::isStarted PHP Method

isStarted() public method

Obtain the status of the cookie storage.
public isStarted ( ) : boolean
return boolean True if $_COOKIE has been initialized, false otherwise.
    public function isStarted()
    {
        return isset($_COOKIE);
    }