2021-07-15 21:17:48 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Pdf;
|
|
|
|
|
|
|
|
interface PdfRepository
|
|
|
|
{
|
2022-03-20 16:33:56 +01:00
|
|
|
public function setFilename(string $filename): static;
|
2021-07-15 21:17:48 +02:00
|
|
|
|
|
|
|
public function getFilename(): string;
|
|
|
|
|
2021-07-16 00:12:19 +02:00
|
|
|
public function getView(): string;
|
|
|
|
|
2022-08-23 23:49:19 +02:00
|
|
|
public function getTemplate(): ?string;
|
2021-07-16 00:12:19 +02:00
|
|
|
|
2022-03-20 16:33:56 +01:00
|
|
|
public function getScript(): EnvType;
|
2021-07-15 21:17:48 +02:00
|
|
|
}
|