mirror of
https://github.com/pestphp/pest.git
synced 2026-04-20 22:20:17 +02: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;
|
|
}
|