Browse Source

Stub out except property.

Taylor Otwell 10 years ago
parent
commit
4e8d5533bd
1 changed files with 9 additions and 0 deletions
  1. 9 0
      app/Http/Middleware/VerifyCsrfToken.php

+ 9 - 0
app/Http/Middleware/VerifyCsrfToken.php

@@ -5,6 +5,15 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
 
 class VerifyCsrfToken extends BaseVerifier
 {
+    /**
+     * The URIs that shoudl be excluded from CSRF verification.
+     *
+     * @var array
+     */
+    protected $except = [
+        //
+    ];
+
     /**
      * Handle an incoming request.
      *