blessing-skin-server/app/Events/PluginWasDeleted.php

22 lines
320 B
PHP
Raw Normal View History

2016-11-19 22:02:02 +08:00
<?php
namespace App\Events;
use App\Services\Plugin;
class PluginWasDeleted extends Event
{
public $plugin;
/**
* Create a new event instance.
*
2018-02-16 16:25:35 +08:00
* @param Plugin $plugin
2016-11-19 22:02:02 +08:00
* @return void
*/
public function __construct(Plugin $plugin)
{
$this->plugin = $plugin;
}
}