Add short and long PDF paths to elements, keep pdfPath as a short PDF compatibility alias, and route generic file uploads by fileType.
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Element\UseCases\UpdateElement;
|
|
|
|
class UpdateLongPdfPathRequest
|
|
{
|
|
public function __construct(
|
|
public ?int $id,
|
|
public ?string $longPdfPath,
|
|
) {
|
|
}
|
|
}
|