Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 4m59s
Added PDF generation service for management reports as per Spec 378, including Gotenberg integration in docker-compose and configuration updates.
21 lines
499 B
PHP
21 lines
499 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Pdf;
|
|
|
|
final class PdfRenderRequest
|
|
{
|
|
/**
|
|
* @param array<string, string> $assets
|
|
* @param array<string, bool|float|int|string> $options
|
|
*/
|
|
public function __construct(
|
|
public readonly string $html,
|
|
public readonly array $assets = [],
|
|
public readonly array $options = [],
|
|
public readonly ?string $correlationId = null,
|
|
public readonly ?string $outputFilename = null,
|
|
) {}
|
|
}
|