handle nullable pdf params

This commit is contained in:
Yisroel Baum 2026-06-26 10:09:50 +03:00
parent 9126b0e968
commit 8c8ee4c050
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 18 additions and 4 deletions

View file

@ -5,8 +5,8 @@ namespace App\Element\UseCases\GetElementPdf;
class GetElementPdfRequest
{
public function __construct(
public string $folder,
public string $fileName,
public ?string $folder,
public ?string $fileName,
) {
}
}