From 285c60d715f7ff52be54a1206f8a8c3e69a53661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Wed, 4 Mar 2026 11:33:00 +0900 Subject: [PATCH] dbmsv4 init...5 --- app/Cells/MylogCell.php | 1 - app/Libraries/AuthContext.php | 10 +++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/app/Cells/MylogCell.php b/app/Cells/MylogCell.php index 4120caa..2be81e3 100644 --- a/app/Cells/MylogCell.php +++ b/app/Cells/MylogCell.php @@ -3,7 +3,6 @@ namespace App\Cells; use App\Cells\CommonCell; -use App\Services\MyLogService; class MylogCell extends CommonCell { diff --git a/app/Libraries/AuthContext.php b/app/Libraries/AuthContext.php index 13efaf0..219a772 100644 --- a/app/Libraries/AuthContext.php +++ b/app/Libraries/AuthContext.php @@ -38,27 +38,27 @@ class AuthContext // Public Accessors (AuthService에서 이동) // ---------------------------------------------------- - public function getUID(): int + public function getUID(): int|null { return $this->getAuthInfo('uid'); } - public function getID(): string + public function getID(): string|null { return $this->getAuthInfo('id'); } - public function getName(): string + public function getName(): string|null { return $this->getAuthInfo('name'); } - public function getRole(): string + public function getRole(): string|null { return $this->getAuthInfo('role'); } - public function getRoles(): array + public function getRoles(): array|null { return explode(DEFAULTS['DELIMITER_COMMA'], $this->getRole()); }