feat(presets): refactors code

This commit is contained in:
Nuno Maduro
2024-06-09 22:22:46 +01:00
parent 84256aa8b9
commit ceb7244b43
7 changed files with 105 additions and 43 deletions

View File

@ -4,18 +4,9 @@ declare(strict_types=1);
namespace Pest\Contracts;
use Pest\Arch\Contracts\ArchExpectation;
use Pest\PendingCalls\TestCall;
/**
* @internal
*/
interface ArchPreset
{
/**
* Boots the arch preset.
*
* @param array<int, string> $baseNamespaces
*/
public function boot(TestCall $testCall, array $baseNamespaces): TestCall|ArchExpectation;
}