Files
pest/src/Contracts/Bootstrapper.php
2022-12-07 09:17:35 +00:00

17 lines
189 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Contracts;
/**
* @internal
*/
interface Bootstrapper
{
/**
* Boots the bootstrapper.
*/
public function boot(): void;
}