App

1 event in this category

router::Ready

Callback parameters: No parameters

onRouterReady

Usage Example

use App\Plugins\PluginEvents;
use App\Plugins\Events\Events\AppEvent;

public static function processEvents(PluginEvents $evt): void
{
    $evt->on(AppEvent::onRouterReady(), function ($parameters) {
        // Handle router::Ready
        // Parameters: No parameters
    });
}