mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			408 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 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
 | |
|         = [
 | |
|             //
 | |
|         ];
 | |
| }
 |