Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
+4 -4
View File
@@ -40,11 +40,11 @@ class UserListService
$parentType = $guardianMap[$userId] ?? '';
$isSecond = false;
if ($userId > 0 && !empty($secondByUserId[$userId])) {
if ($userId > 0 && ! empty($secondByUserId[$userId])) {
$isSecond = true;
} else {
$email = trim(strtolower((string) $user->email));
if ($email !== '' && !empty($secondByEmail[$email])) {
if ($email !== '' && ! empty($secondByEmail[$email])) {
$isSecond = true;
}
}
@@ -91,7 +91,7 @@ class UserListService
private function guardianTypeMap(): array
{
if (!Schema::hasTable('family_guardians')) {
if (! Schema::hasTable('family_guardians')) {
return [];
}
@@ -119,7 +119,7 @@ class UserListService
private function secondParentMaps(): array
{
if (!Schema::hasTable('parents')) {
if (! Schema::hasTable('parents')) {
return [[], []];
}