diff options
author | Sam Light <samlight1994@gmail.com> | 2025-04-10 00:46:56 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-04-10 00:46:56 +0100 |
commit | 16c9211f738a039d77f0e5efb26742c98cdebd54 (patch) | |
tree | 82e0ae58080ef2d5a660c2f26184103640009ab8 /src | |
parent | 237ca0698f63ea69ad0e93565f98a25d5aa81b59 (diff) |
Fix bug with the Status values
Diffstat (limited to 'src')
-rw-r--r-- | src/Enums/Status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Enums/Status.php b/src/Enums/Status.php index 2a8464b..a752742 100644 --- a/src/Enums/Status.php +++ b/src/Enums/Status.php @@ -8,7 +8,7 @@ enum Status: string case LoginFailure = 'login_failure'; case Logout = 'logout'; - public function values(): array + public static function values(): array { return array_map( fn($s) => $s->value, |