Skip to content

Commit

Permalink
Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jan 9, 2024
1 parent ba56f67 commit cb551b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct(

public function getSdk(): Auth0
{
if (! $this->sdk instanceof \Auth0\SDK\Auth0) {
if (! $this->sdk instanceof Auth0) {
$this->warmUp();
$this->sdk = new Auth0($this->configuration);

Expand Down
2 changes: 1 addition & 1 deletion src/Stores/SessionStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private function session(
} catch (Throwable) {
}

if ($session instanceof \Symfony\Component\HttpFoundation\Session\SessionInterface) {
if ($session instanceof SessionInterface) {
if (! $session->isStarted()) {
$session->start();
}
Expand Down

0 comments on commit cb551b3

Please sign in to comment.