Browse Source

Merge pull request #3035 from danharper/patch-1

Missing Authenticator import in GuestFilter
Taylor Otwell 10 years ago
parent
commit
1edb0eb24c
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/Http/Filters/GuestFilter.php

+ 1 - 0
app/Http/Filters/GuestFilter.php

@@ -1,5 +1,6 @@
 <?php namespace App\Http\Filters;
 
+use Illuminate\Contracts\Auth\Authenticator;
 use Illuminate\Http\RedirectResponse;
 
 class GuestFilter {