mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01: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');
|
|
}
|
|
}
|