12 lines
196 B
PHP
12 lines
196 B
PHP
<?php
|
|
|
|
namespace App\Services\Report\Export;
|
|
|
|
use App\Models\Study;
|
|
use App\Models\StudyReport;
|
|
|
|
interface IExportDocument
|
|
{
|
|
public function make(Study $study, StudyReport $report): string;
|
|
}
|