Fix Pint formatting

This commit is contained in:
root
2026-06-09 01:25:14 -04:00
parent 6be4875c5e
commit 20a0b6c4e5
1485 changed files with 11318 additions and 10273 deletions
+4 -5
View File
@@ -2,7 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
use Illuminate\Support\Facades\DB;
class FamilyStudent extends BaseModel
@@ -20,9 +19,9 @@ class FamilyStudent extends BaseModel
];
protected $casts = [
'family_id' => 'integer',
'student_id' => 'integer',
'is_primary_home' => 'boolean',
'family_id' => 'integer',
'student_id' => 'integer',
'is_primary_home' => 'boolean',
];
/* Optional relationships */
@@ -53,4 +52,4 @@ class FamilyStudent extends BaseModel
->map(fn ($r) => (array) $r)
->all();
}
}
}