Files
pest/src/Contracts/Plugins/HandlesArguments.php
2021-09-25 13:29:11 +01:00

21 lines
375 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Contracts\Plugins;
/**
* @internal
*/
interface HandlesArguments
{
/**
* Allows to handle custom command line arguments.
*
* @param array<int, string> $arguments
*
* @return array<int, string> the updated list of arguments
*/
public function handleArguments(array $arguments): array;
}