11 lines
204 B
PHP
11 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Contracts;
|
|
|
|
use App\Application\Reports\DTO\ReportComparisonResult;
|
|
|
|
interface AuditLogger
|
|
{
|
|
public function logComparison(ReportComparisonResult $result): void;
|
|
}
|