Files
pest/src/Installers/PluginBrowser.php
2025-06-28 18:18:26 +01:00

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');
}
}