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,25 +0,0 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestForgery as Middleware;
class PreventRequestForgery extends Middleware
{
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array<int, string>
*/
protected $except = [
'login',
'installation/session-login',
];
}