mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
20 lines
340 B
PHP
20 lines
340 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts\Plugins;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface HandlesArguments
|
|
{
|
|
/**
|
|
* Adds arguments before the Test Suite execution.
|
|
*
|
|
* @param array<int, string> $arguments
|
|
* @return array<int, string>
|
|
*/
|
|
public function handleArguments(array $arguments): array;
|
|
}
|