post crud fix

This commit is contained in:
2024-07-26 12:42:44 +03:00
parent f5f546ba95
commit 2d8f945cad
7 changed files with 25 additions and 8 deletions

View File

@ -34,8 +34,9 @@ class UserService
return false;
}
public function check(int $user_id): bool
public static function check(int $user_id): bool
{
if (User::where(['id' => $user_id])->first())
{
return true;