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