BookStack/app/Http/Middleware/VerifyCsrfToken.php

18 lines
313 B
PHP
Raw Normal View History

2015-07-12 15:01:42 -04:00
<?php
namespace BookStack\Http\Middleware;
2015-07-12 15:01:42 -04:00
2017-11-19 10:56:06 -05:00
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
2015-07-12 15:01:42 -04:00
2017-11-19 10:56:06 -05:00
class VerifyCsrfToken extends Middleware
2015-07-12 15:01:42 -04:00
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
}