Skip to content

Commit f5f780b

Browse files
committed
Return all columns
1 parent e33146c commit f5f780b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UserVerification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ protected function getUserByEmail($email, $table)
245245
{
246246
$user = DB::table($table)
247247
->where('email', $email)
248-
->first(['id', 'email', 'verified', 'verification_token']);
248+
->first();
249249

250250
if ($user === null) {
251251
throw new UserNotFoundException();

0 commit comments

Comments
 (0)