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
@@ -20,7 +20,7 @@ class FamilyQueryServiceTest extends TestCase
$this->seedFamilyStudent($familyId, $studentId);
$this->seedFamilyGuardian($familyId, 1);
$service = new FamilyQueryService(new FamilyFinanceService());
$service = new FamilyQueryService(new FamilyFinanceService);
$result = $service->adminIndexData($studentId, null, '2025-2026');
$this->assertNotEmpty($result['families']);
@@ -31,7 +31,7 @@ class FamilyQueryServiceTest extends TestCase
{
$this->seedStudent(10, 1);
$service = new FamilyQueryService(new FamilyFinanceService());
$service = new FamilyQueryService(new FamilyFinanceService);
$items = $service->searchSuggestions('Student', 5);
$this->assertNotEmpty($items);
@@ -46,7 +46,7 @@ class FamilyQueryServiceTest extends TestCase
$this->seedFamilyStudent($familyId, $studentId);
$this->seedFamilyGuardian($familyId, 1);
$service = new FamilyQueryService(new FamilyFinanceService());
$service = new FamilyQueryService(new FamilyFinanceService);
$family = $service->familyCard(null, null, $familyId, '2025-2026');
$this->assertNotNull($family);
@@ -68,7 +68,7 @@ class FamilyQueryServiceTest extends TestCase
'firstname' => 'Parent',
'lastname' => 'User',
'cellphone' => '9999999999',
'email' => 'parent' . $parentId . '@example.com',
'email' => 'parent'.$parentId.'@example.com',
'address_street' => '123 Street',
'city' => 'City',
'state' => 'ST',
@@ -103,7 +103,7 @@ class FamilyQueryServiceTest extends TestCase
{
return DB::table('families')->insertGetId([
'family_code' => $code,
'household_name' => 'Family ' . $code,
'household_name' => 'Family '.$code,
'is_active' => 1,
'created_at' => now(),
'updated_at' => now(),