14 lines
313 B
PHP
14 lines
313 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Contracts;
|
|
|
|
use App\Domain\Reports\Models\ReportSnapshot;
|
|
use App\Domain\Reports\Models\SavedReportResult;
|
|
|
|
interface ReportRepository
|
|
{
|
|
public function save(ReportSnapshot $snapshot): SavedReportResult;
|
|
|
|
public function findSnapshot(int $reportId): ?ReportSnapshot;
|
|
}
|