9 lines
158 B
PHP
9 lines
158 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
interface TuitionCalculatorInterface
|
|
{
|
|
public function calculateFamilyTuition(array $students, array $config): array;
|
|
}
|