2017-06-09 02:28:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
|
2019-11-27 22:19:20 +08:00
|
|
|
use App\Contracts\Middleware;
|
2017-06-09 02:28:26 +08:00
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
|
|
|
|
|
2019-11-27 22:19:20 +08:00
|
|
|
class VerifyCsrfToken extends BaseVerifier implements Middleware
|
2017-06-09 02:28:26 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
}
|