mirror of
https://github.com/exane/not-gwent-online
synced 2024-10-31 10:36:53 +00:00
18 lines
313 B
PHP
18 lines
313 B
PHP
|
<?php
|
||
|
|
||
|
namespace Gwent\Http\Middleware;
|
||
|
|
||
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
|
||
|
|
||
|
class VerifyCsrfToken extends BaseVerifier
|
||
|
{
|
||
|
/**
|
||
|
* The URIs that should be excluded from CSRF verification.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $except = [
|
||
|
//
|
||
|
];
|
||
|
}
|