chore(app): remove legacy-era module-platform, provider, middleware, rule and support sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-21 14:15:49 +02:00
parent 10b76da90d
commit 56cb653a2d
24 changed files with 0 additions and 1418 deletions
@@ -1,26 +0,0 @@
<?php
namespace App\Platform\Modules\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ModuleEnabledEvent
{
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
public $module;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($module)
{
$this->module = $module;
}
}