Files
pest/src/Bootstrappers/BootPhpUnitConfiguration.php
nuno maduro 5f37939fda wip
2026-05-02 17:02:11 +01:00

20 lines
311 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Bootstrappers;
use Pest\Contracts\Bootstrapper;
use PHPUnit\TextUI\Configuration\Builder;
/**
* @internal
*/
final class BootPhpUnitConfiguration implements Bootstrapper
{
public function boot(): void
{
(new Builder)->build(['pest']);
}
}