Session 클래스 구조 살짝 수정. 호출 구조 살짝 수정.
환상향 시나리오 전콘 반영(임시)
This commit is contained in:
@@ -320,7 +320,7 @@ class Session
|
||||
return $obj->userID;
|
||||
}
|
||||
|
||||
public function isLoggedIn()
|
||||
public function isLoggedIn(): bool
|
||||
{
|
||||
if ($this->userID) {
|
||||
return true;
|
||||
@@ -329,7 +329,7 @@ class Session
|
||||
}
|
||||
}
|
||||
|
||||
public function isGameLoggedIn()
|
||||
public function isGameLoggedIn(): bool
|
||||
{
|
||||
if ($this->generalID) {
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user