Skip to content

Commit 83704cd

Browse files
committed
πŸ› Typos & missing imports.
1 parent db28f8d commit 83704cd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

β€Žsrc/AuthBroker.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ protected function findExistingVerifiedAuthorization(HasDeviceAuthorizations $us
238238

239239
$fingerprintHash = hash($algorithm, $fingerprint);
240240

241-
if ($authorization = $user->deviceAuthorizations()->veifiedFingerprint($fingerprintHash)->first()) {
241+
if ($authorization = $user->deviceAuthorizations()->verifiedFingerprint($fingerprintHash)->first()) {
242242
return $authorization;
243243
}
244244

β€Žsrc/Contracts/AuthManager.phpβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
use BoxedCode\Laravel\Auth\Device\Contracts\HasDeviceAuthorizations;
66
use Illuminate\Contracts\Events\Dispatcher as EventDispatcher;
7+
use Illuminate\Http\Request;
8+
use Symfony\Component\HttpFoundation\Response;
79

810
interface AuthManager
911
{

0 commit comments

Comments
Β (0)