mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-14 17:33:43 -06:00
17 lines
332 B
PHP
17 lines
332 B
PHP
<?php
|
|
namespace FireflyIII\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
|
|
= [
|
|
//
|
|
];
|
|
} |