BookStack/app/Http/Middleware/VerifyCsrfToken.php

18 lines
313 B
PHP
Raw Normal View History

2015-07-12 19:01:42 +00:00
<?php
namespace Oxbow\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 = [
//
];
}