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