인증시 로그아웃이 바로 풀리는 버그 수정

This commit is contained in:
2018-09-10 00:38:06 +09:00
parent bdbb81cbd7
commit 18055ce244
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -180,8 +180,9 @@ class Session
return $this;
}
public function setReqOTP(bool $reqOTP=false){
public function setReqOTP(bool $reqOTP=false, string $tokenValidUntil){
$this->set('reqOTP', $reqOTP);
$this->set('tokenValidUntil', $tokenValidUntil);
}