Files
pest/src/Contracts/TestCaseFilter.php
T
2026-08-07 14:52:56 +01:00

11 lines
149 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Contracts;
interface TestCaseFilter
{
public function accept(string $testCaseFilename): bool;
}