mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 14:23:34 +02:00
14 lines
142 B
PHP
14 lines
142 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface Bootstrapper
|
|
{
|
|
public function boot(): void;
|
|
}
|