remaining failures are now broader contract/workflow assertions and route/API behavior issues
API CI/CD / Validate (composer + pint) (push) Successful in 2m47s
API CI/CD / Test (PHPUnit) (push) Failing after 3m5s
API CI/CD / Build frontend assets (push) Failing after 5m22s
API CI/CD / Security audit (push) Failing after 34s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
API CI/CD / Validate (composer + pint) (push) Successful in 2m47s
API CI/CD / Test (PHPUnit) (push) Failing after 3m5s
API CI/CD / Build frontend assets (push) Failing after 5m22s
API CI/CD / Security audit (push) Failing after 34s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
This commit is contained in:
@@ -19,7 +19,7 @@ class EventChargeService
|
||||
->where('enrollments.school_year', $schoolYear)
|
||||
->whereIn('enrollments.enrollment_status', ['enrolled', 'payment pending'])
|
||||
->get()
|
||||
->map(fn ($row) => (array) $row)
|
||||
->map(fn ($row) => $row->toArray())
|
||||
->all();
|
||||
|
||||
$parentIds = [];
|
||||
@@ -152,7 +152,7 @@ class EventChargeService
|
||||
$charges = EventCharges::query()
|
||||
->where('event_id', $eventId)
|
||||
->get()
|
||||
->map(fn ($row) => (array) $row)
|
||||
->map(fn ($row) => $row->toArray())
|
||||
->all();
|
||||
|
||||
$parentIds = [];
|
||||
|
||||
@@ -675,7 +675,7 @@ class ReportCardService
|
||||
$query->where('student_class.school_year', $schoolYear);
|
||||
}
|
||||
|
||||
return $query->get()->map(fn ($r) => (array) $r)->all();
|
||||
return $query->get()->map(fn ($r) => $r->toArray())->all();
|
||||
}
|
||||
|
||||
private function normalizeSemester(?string $input): string
|
||||
|
||||
Reference in New Issue
Block a user