TenantAtlas/apps/platform/app/Services/PermissionPosture/PostureResult.php
2026-04-08 09:33:16 +02:00

22 lines
500 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\PermissionPosture;
/**
* Value object summarizing the outcome of a posture finding generation run.
*/
final readonly class PostureResult
{
public function __construct(
public int $findingsCreated,
public int $findingsResolved,
public int $findingsReopened,
public int $findingsUnchanged,
public int $errorsRecorded,
public int $postureScore,
public int $storedReportId,
) {}
}