18 lines
375 B
PHP
18 lines
375 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\BackupHealth;
|
|
|
|
use Carbon\CarbonInterface;
|
|
|
|
final readonly class BackupFreshnessEvaluation
|
|
{
|
|
public function __construct(
|
|
public ?CarbonInterface $latestCompletedAt,
|
|
public CarbonInterface $cutoffAt,
|
|
public bool $isFresh,
|
|
public string $policySource = 'configured_window',
|
|
) {}
|
|
}
|