php-framework/tests/Fixtures/Plug/TestPlugin/Boot.php

20 lines
305 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
namespace Plug\TestPlugin;
use Core\Events\FrameworkBooted;
class Boot
{
public static array $listens = [
FrameworkBooted::class => 'onBooted',
];
public function onBooted(FrameworkBooted $event): void
{
// Plugin initialization
}
}