Files
pest/src/Plugins/Tia/Contracts/WatchDefault.php
nuno maduro 536d79f765 wip
2026-05-02 19:20:55 +01:00

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;
}