21 lines
321 B
PHP
21 lines
321 B
PHP
<?php
|
|
|
|
namespace App\Pdf;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface PdfRepository
|
|
{
|
|
|
|
public function getSubject(): string;
|
|
|
|
public function setFilename(string $filename): self;
|
|
|
|
public function getFilename(): string;
|
|
|
|
public function getView(): string;
|
|
|
|
public function getTemplate(): string;
|
|
|
|
}
|