1.2 - Sketching out the First Test

This commit is contained in:
Adam Wathan
2016-11-01 14:22:29 -04:00
commit e257fdd512
80 changed files with 10725 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\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 = [
//
];
}