mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
15 lines
279 B
PHP
15 lines
279 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Plugins\Parallel\Contracts;
|
|
|
|
interface HandlersWorkerArguments
|
|
{
|
|
/**
|
|
* @param array<int, string> $arguments
|
|
* @return array<int, string>
|
|
*/
|
|
public function handleWorkerArguments(array $arguments): array;
|
|
}
|