Files
Atomcms-edit/app/Http/Middleware/VerifyCsrfToken.php
T
2026-05-09 17:32:17 +02:00

19 lines
333 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\Http\Middleware;
class VerifyCsrfToken extends \Illuminate\Foundation\Http\Middleware\VerifyCsrfToken
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array<int, string>
*/
#[\Override]
protected $except = [
//
];
}