Automated PR created by Codex via Gitea API. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #459
18 lines
370 B
PHP
18 lines
370 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\ReviewPublicationResolution;
|
|
|
|
use Carbon\CarbonInterface;
|
|
|
|
final readonly class ResolutionProofReference
|
|
{
|
|
public function __construct(
|
|
public string $proofType,
|
|
public int $proofId,
|
|
public ?string $sourceStatus = null,
|
|
public ?CarbonInterface $proofTimestamp = null,
|
|
) {}
|
|
}
|