Bluz\Session\Session::setSavePath PHP 메소드

setSavePath() 보호된 메소드

Set session save path
protected setSavePath ( string $savePath ) : Session
$savePath string
리턴 Session
    protected function setSavePath($savePath)
    {
        if (!is_dir($savePath) || !is_writable($savePath)) {
            throw new ComponentException('Session path is not writable');
        }
        session_save_path($savePath);
        return $this;
    }