blessing-skin-server/app/Events/PluginWasDeleted.php
2016-11-19 22:02:02 +08:00

22 lines
291 B
PHP

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