TenantAtlas/app/Support/OpsUx/OperationSummaryKeys.php
2026-01-18 14:44:16 +01:00

27 lines
532 B
PHP

<?php
namespace App\Support\OpsUx;
class OperationSummaryKeys
{
/**
* Return the canonical allowed summary keys used for Ops-UX rendering.
* Keep ordering stable to make guard tests deterministic.
*/
public static function all(): array
{
return [
'total',
'processed',
'succeeded',
'failed',
'skipped',
'created',
'updated',
'deleted',
'items',
'tenants',
];
}
}