We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba56f67 commit cb551b3Copy full SHA for cb551b3
src/Service.php
@@ -27,7 +27,7 @@ public function __construct(
27
28
public function getSdk(): Auth0
29
{
30
- if (! $this->sdk instanceof \Auth0\SDK\Auth0) {
+ if (! $this->sdk instanceof Auth0) {
31
$this->warmUp();
32
$this->sdk = new Auth0($this->configuration);
33
src/Stores/SessionStore.php
@@ -147,7 +147,7 @@ private function session(
147
} catch (Throwable) {
148
}
149
150
- if ($session instanceof \Symfony\Component\HttpFoundation\Session\SessionInterface) {
+ if ($session instanceof SessionInterface) {
151
if (! $session->isStarted()) {
152
$session->start();
153
0 commit comments