mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02:00
16 lines
230 B
PHP
16 lines
230 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Installers;
|
|
|
|
use Pest\Support\View;
|
|
|
|
final readonly class PluginBrowser
|
|
{
|
|
public static function install(): void
|
|
{
|
|
View::render('installers/plugin-browser');
|
|
}
|
|
}
|