mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
19 lines
349 B
PHP
19 lines
349 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Plugins\Tia\Contracts;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface WatchDefault
|
|
{
|
|
public function applicable(): bool;
|
|
|
|
/**
|
|
* @return array<string, array<int, string>> pattern → list of project-relative test dirs
|
|
*/
|
|
public function defaults(string $projectRoot, string $testPath): array;
|
|
}
|