run phpcs

This commit is contained in:
James Cole
2025-01-05 07:31:26 +01:00
parent 0f69e0d672
commit c3ffd39450
29 changed files with 112 additions and 94 deletions

View File

@@ -34,13 +34,13 @@ class UserPolicy
public function view(User $user, User $user1): bool
{
return true;
// return auth()->check() && $user->id === $account->user_id;
// return auth()->check() && $user->id === $account->user_id;
}
public function viewAccounts(User $user): bool
{
return true;
// return auth()->check();
// return auth()->check();
}
/**
@@ -51,6 +51,6 @@ class UserPolicy
public function viewAny(): bool
{
return true;
// return auth()->check();
// return auth()->check();
}
}