1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-13 01:30:11 +01:00
openstamanager/app/Http/Middleware/VerifyCsrfToken.php
2023-05-07 17:06:01 +02:00

18 lines
364 B
PHP

<?php
/** @noinspection PropertyInitializationFlawsInspection */
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array<int, string>
*/
protected $except = [];
}