Skip to content

Commit

Permalink
fix: update method signatures in AdminAuth facade to reflect correct …
Browse files Browse the repository at this point in the history
…return types (v4)

Signed-off-by: Sam Poyigi <[email protected]>
  • Loading branch information
sampoyigi committed Jan 2, 2025
1 parent 9b9f0d1 commit 3e89280
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Facades/AdminAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
use Illuminate\Support\Facades\Facade;

/**
* @method static void isLogged()
* @method static void isSuperUser()
* @method static bool isLogged()
* @method static bool isSuperUser()
* @method static \Igniter\User\Models\User|\Illuminate\Contracts\Auth\Authenticatable staff()
* @method static \Illuminate\Database\Eloquent\Collection locations()
* @method static void getId()
* @method static void getUserName()
* @method static void getUserEmail()
* @method static void getStaffName()
* @method static void getStaffEmail()
* @method static \Illuminate\Contracts\Auth\Authenticatable|null user()
* @method static integer getId()
* @method static string getUserName()
* @method static string getUserEmail()
* @method static string getStaffName()
* @method static string getStaffEmail()
* @method static \Illuminate\Contracts\Auth\Authenticatable|\Igniter\User\Auth\Models\User|null user()
* @method static int|string|null id()
* @method static bool once(array $credentials = [])
* @method static \Illuminate\Contracts\Auth\Authenticatable|false onceUsingId(mixed $id)
Expand Down Expand Up @@ -49,7 +49,7 @@
* @method static bool check()
* @method static bool guest()
* @method static \Igniter\User\Auth\UserGuard forgetUser()
* @method static \Illuminate\Contracts\Auth\UserProvider getProvider()
* @method static \Illuminate\Contracts\Auth\UserProvider|\Igniter\User\Auth\UserProvider getProvider()
* @method static void setProvider(\Illuminate\Contracts\Auth\UserProvider $provider)
* @method static void macro(string $name, object|callable $macro)
* @method static void mixin(object $mixin, bool $replace = true)
Expand Down

0 comments on commit 3e89280

Please sign in to comment.