Skip to content

Commit

Permalink
Commit from GitHub Actions (style-fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed Feb 21, 2025
1 parent 864763e commit 46ee75d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/TestSupport/CustomUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ public function retrieveByToken($identifier, $token)
return null;
}

public function updateRememberToken(Authenticatable $user, $token) {}
public function updateRememberToken(Authenticatable $user, $token)
{
}

public function retrieveByCredentials(array $credentials)
{
Expand All @@ -34,5 +36,7 @@ public function getAuthPasswordName()
return '';
}

public function rehashPasswordIfRequired(Authenticatable $user, array $credentials, bool $force = false) {}
public function rehashPasswordIfRequired(Authenticatable $user, array $credentials, bool $force = false)
{
}
}

0 comments on commit 46ee75d

Please sign in to comment.