for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Tinyissue package.
*
* (c) Mohamed Alsharaf <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tinyissue\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
/**
* VerifyCsrfToken is a Middleware class verify the session token.
* @author Mohamed Alsharaf <[email protected]>
class VerifyCsrfToken extends BaseVerifier
{
* The URIs that should be excluded from CSRF verification.
* @var array
protected $except = [
//
];
}