mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
32 lines
643 B
PHP
Executable File
32 lines
643 B
PHP
Executable File
<?php
|
|
/**
|
|
* VerifyCsrfToken.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
|
|
|
|
/**
|
|
* Class VerifyCsrfToken
|
|
*
|
|
* @package FireflyIII\Http\Middleware
|
|
*/
|
|
class VerifyCsrfToken extends BaseVerifier
|
|
{
|
|
/**
|
|
* The URIs that should be excluded from CSRF verification.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $except
|
|
= [
|
|
//
|
|
];
|
|
}
|