Skip to content

Commit cb551b3

Browse files
committed
Fix linter warnings
1 parent ba56f67 commit cb551b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Service.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct(
2727

2828
public function getSdk(): Auth0
2929
{
30-
if (! $this->sdk instanceof \Auth0\SDK\Auth0) {
30+
if (! $this->sdk instanceof Auth0) {
3131
$this->warmUp();
3232
$this->sdk = new Auth0($this->configuration);
3333

src/Stores/SessionStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private function session(
147147
} catch (Throwable) {
148148
}
149149

150-
if ($session instanceof \Symfony\Component\HttpFoundation\Session\SessionInterface) {
150+
if ($session instanceof SessionInterface) {
151151
if (! $session->isStarted()) {
152152
$session->start();
153153
}

0 commit comments

Comments
 (0)