23 lines
442 B
PHP
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);
|
|
}
|
|
}
|