phpvms/app/Http/Middleware/VerifyCsrfToken.php

16 lines
295 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
2018-08-27 00:40:04 +08:00
*
2017-06-09 02:28:26 +08:00
* @var array
*/
2018-08-27 02:50:08 +08:00
protected $except = [];
2017-06-09 02:28:26 +08:00
}