BookStack/app/Http/Middleware/VerifyCsrfToken.php
2017-11-19 15:56:19 +00:00

18 lines
313 B
PHP

<?php
namespace BookStack\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
*/
protected $except = [
//
];
}