mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 14:23:34 +02:00
18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts\Plugins;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface HandlesArguments
|
|
{
|
|
/**
|
|
* @param array<int, string> $arguments
|
|
* @return array<int, string>
|
|
*/
|
|
public function handleArguments(array $arguments): array;
|
|
}
|