mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
17 lines
246 B
PHP
17 lines
246 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface Restarter
|
|
{
|
|
/**
|
|
* @param array<int, string> $arguments
|
|
*/
|
|
public function maybeRestart(string $projectRoot, array $arguments): void;
|
|
}
|