extract pdf use case

This commit is contained in:
Yisroel Baum 2026-06-26 08:16:15 +03:00
parent b1bee8a16e
commit bc7937d2b3
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
7 changed files with 141 additions and 26 deletions

View file

@ -0,0 +1,28 @@
<?php
namespace App\Element\UseCases\GetElementPdf;
class GetElementPdfResult
{
public function __construct(
private string $contents,
private string $fileName,
private string $mimeType,
) {
}
public function getContents(): string
{
return $this->contents;
}
public function getFileName(): string
{
return $this->fileName;
}
public function getMimeType(): string
{
return $this->mimeType;
}
}