13 lines
234 B
PHP
Executable File
13 lines
234 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class FeeCalculationService
|
|
{
|
|
public function calculateRefund(array $students, int $parentId): float
|
|
{
|
|
// TODO: Replace with actual refund calculation logic.
|
|
return 0.0;
|
|
}
|
|
}
|