10 lines
209 B
PHP
10 lines
209 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface MetricCalculatorInterface
|
|
{
|
|
public function calculate(array $departmentIds, string $startDate, string $endDate): array;
|
|
public function getMetricId(): int;
|
|
}
|