30 lines
608 B
PHP
30 lines
608 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',
|
|
'compliant',
|
|
'noncompliant',
|
|
'unknown',
|
|
'created',
|
|
'updated',
|
|
'deleted',
|
|
'items',
|
|
'tenants',
|
|
];
|
|
}
|
|
}
|