mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
chore: different refactors
This commit is contained in:
14
src/Plugins/Parallel/Contracts/HandlersWorkerArguments.php
Normal file
14
src/Plugins/Parallel/Contracts/HandlersWorkerArguments.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user