Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-09 00:03:03 -04:00
parent 8d4d610b82
commit b5fd4a4ca1
1414 changed files with 11317 additions and 10201 deletions
@@ -11,9 +11,7 @@ use Illuminate\Support\Facades\DB;
class PaymentEventChargesService
{
public function __construct(private ChargeService $chargeService)
{
}
public function __construct(private ChargeService $chargeService) {}
public function listCharges(?string $schoolYear, ?string $semester): array
{
@@ -56,7 +54,7 @@ class PaymentEventChargesService
$count = 0;
if (!empty($studentIds)) {
if (! empty($studentIds)) {
foreach ($studentIds as $studentId) {
$result = $this->chargeService->createEventCharge([
'parent_id' => $parentId,
@@ -73,7 +71,7 @@ class PaymentEventChargesService
$count++;
}
}
} elseif (!empty($payload['student_id'])) {
} elseif (! empty($payload['student_id'])) {
$result = $this->chargeService->createEventCharge([
'parent_id' => $parentId,
'student_id' => (int) $payload['student_id'],