TenantAtlas/tests/Support/OpsUxTestSupport.php
2026-01-18 14:44:16 +01:00

23 lines
442 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Support;
final class OpsUxTestSupport
{
/**
* @param array<string, mixed> $overrides
* @return array<string, mixed>
*/
public static function summaryCounts(array $overrides = []): array
{
return array_merge([
'total' => 10,
'processed' => 5,
'succeeded' => 5,
'failed' => 0,
], $overrides);
}
}