blessing-skin-server/app/Events/PluginWasDeleted.php
2018-02-16 16:29:37 +08:00

22 lines
320 B
PHP

<?php
namespace App\Events;
use App\Services\Plugin;
class PluginWasDeleted extends Event
{
public $plugin;
/**
* Create a new event instance.
*
* @param Plugin $plugin
* @return void
*/
public function __construct(Plugin $plugin)
{
$this->plugin = $plugin;
}
}