mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
20 lines
311 B
PHP
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']);
|
|
}
|
|
}
|