mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 02:17:25 +08:00
16 lines
218 B
PHP
Executable File
16 lines
218 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Services\Plugin;
|
|
|
|
class PluginBootFailed extends Event
|
|
{
|
|
public Plugin $plugin;
|
|
|
|
public function __construct(Plugin $plugin)
|
|
{
|
|
$this->plugin = $plugin;
|
|
}
|
|
}
|