refactor: comments

This commit is contained in:
Nuno Maduro
2021-10-24 19:37:29 +01:00
parent 2b687a7269
commit 648c6c5a27
32 changed files with 151 additions and 133 deletions

View File

@ -10,11 +10,11 @@ namespace Pest\Contracts\Plugins;
interface HandlesArguments
{
/**
* Allows to handle custom command line arguments.
* Adds arguments before of the Test Suite execution.
*
* @param array<int, string> $arguments
* @param array<int, string> $argv
*
* @return array<int, string> the updated list of arguments
* @return array<int, string>
*/
public function handleArguments(array $arguments): array;
public function handleArguments(array $argv): array;
}