Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 22, 2022
2 parents f7e2aa2 + 72a344d commit acbb5c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EloquentUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function retrieveById($identifier)
$model = $this->createModel();

return $this->newModelQuery($model)
->where($model->qualifyColumn($model->getAuthIdentifierName()), $identifier)
->where($model->getAuthIdentifierName(), $identifier)
->first();
}

Expand All @@ -64,7 +64,7 @@ public function retrieveByToken($identifier, $token)
$model = $this->createModel();

$retrievedModel = $this->newModelQuery($model)->where(
$model->qualifyColumn($model->getAuthIdentifierName()), $identifier
$model->getAuthIdentifierName(), $identifier
)->first();

if (! $retrievedModel) {
Expand Down

0 comments on commit acbb5c4

Please sign in to comment.