Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Apr 18, 2017
2 parents fa3806f + e01d882 commit 34654e2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SessionGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use RuntimeException;
use Illuminate\Support\Str;
use Illuminate\Http\Response;
use Illuminate\Support\Traits\Macroable;
use Illuminate\Contracts\Session\Session;
use Illuminate\Contracts\Auth\UserProvider;
use Illuminate\Contracts\Events\Dispatcher;
Expand All @@ -16,7 +17,7 @@

class SessionGuard implements StatefulGuard, SupportsBasicAuth
{
use GuardHelpers;
use GuardHelpers, Macroable;

/**
* The name of the Guard. Typically "session".
Expand Down Expand Up @@ -155,7 +156,7 @@ public function user()
/**
* Pull a user from the repository by its "remember me" cookie token.
*
* @param string $recaller
* @param \Illuminate\Auth\Recaller $recaller
* @return mixed
*/
protected function userFromRecaller($recaller)
Expand Down

0 comments on commit 34654e2

Please sign in to comment.