9 lines
181 B
PHP
9 lines
181 B
PHP
<?php
|
|
|
|
namespace App\Domain\ReportDuty\Contracts;
|
|
|
|
interface DutyMetricRepositoryInterface
|
|
{
|
|
public function saveMetric(int $reportId, int $metricId, float|int $value): void;
|
|
}
|