dbmsv4 init...5

This commit is contained in:
최준흠 2026-03-04 11:33:00 +09:00
parent 6983a5f3de
commit 285c60d715
2 changed files with 5 additions and 6 deletions

View File

@ -3,7 +3,6 @@
namespace App\Cells; namespace App\Cells;
use App\Cells\CommonCell; use App\Cells\CommonCell;
use App\Services\MyLogService;
class MylogCell extends CommonCell class MylogCell extends CommonCell
{ {

View File

@ -38,27 +38,27 @@ class AuthContext
// Public Accessors (AuthService에서 이동) // Public Accessors (AuthService에서 이동)
// ---------------------------------------------------- // ----------------------------------------------------
public function getUID(): int public function getUID(): int|null
{ {
return $this->getAuthInfo('uid'); return $this->getAuthInfo('uid');
} }
public function getID(): string public function getID(): string|null
{ {
return $this->getAuthInfo('id'); return $this->getAuthInfo('id');
} }
public function getName(): string public function getName(): string|null
{ {
return $this->getAuthInfo('name'); return $this->getAuthInfo('name');
} }
public function getRole(): string public function getRole(): string|null
{ {
return $this->getAuthInfo('role'); return $this->getAuthInfo('role');
} }
public function getRoles(): array public function getRoles(): array|null
{ {
return explode(DEFAULTS['DELIMITER_COMMA'], $this->getRole()); return explode(DEFAULTS['DELIMITER_COMMA'], $this->getRole());
} }