Skip to content

Commit

Permalink
update stubs ci3
Browse files Browse the repository at this point in the history
  • Loading branch information
Satya Kresna committed Oct 4, 2022
1 parent ebce6ee commit 315f371
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stubs/ci3/libraries/Webguard.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use RistekUSDI\SSO\PHP\Exceptions\CallbackException;
use RistekUSDI\SSO\PHP\Services\SSOService;
use RistekUSDI\SSO\PHP\Auth\Guard\WebGuard;
use RistekUSDI\SSO\PHP\Auth\Guard\WebGuard as Guard;
use RistekUSDI\SSO\PHP\Auth\AccessToken;

class Webguard {
Expand All @@ -11,7 +11,7 @@ class Webguard {

public function __construct()
{
$this->user = (new WebGuard)->user();
$this->user = (new Guard)->user();
}

/**
Expand All @@ -26,12 +26,12 @@ public function authenticated()

public function check()
{
return (new WebGuard())->check();
return (new Guard())->check();
}

public function guest()
{
return (new WebGuard())->guest();
return (new Guard())->guest();
}

public function user()
Expand Down

0 comments on commit 315f371

Please sign in to comment.