Commit 4e8d5533 authored by Taylor Otwell's avatar Taylor Otwell

Stub out except property.

parent 88f5182d
...@@ -5,6 +5,15 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; ...@@ -5,6 +5,15 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier class VerifyCsrfToken extends BaseVerifier
{ {
/**
* The URIs that shoudl be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
/** /**
* Handle an incoming request. * Handle an incoming request.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment