| 1 |
<?php |
| 2 |
|
| 3 |
namespace ReviewX\Utilities\Auth; |
| 4 |
|
| 5 |
\defined("ABSPATH") || exit; |
| 6 |
use ReviewX\WPDrill\Facade; |
| 7 |
/** |
| 8 |
* Class WpUser |
| 9 |
* |
| 10 |
* @method static void setLoggedInStatus(bool $value) |
| 11 |
* @method static void setAbility(bool $value) |
| 12 |
* @method static bool isLoggedIn() |
| 13 |
* @method static bool can() |
| 14 |
*/ |
| 15 |
class WpUser extends Facade |
| 16 |
{ |
| 17 |
public static function getFacadeAccessor() : string |
| 18 |
{ |
| 19 |
return \ReviewX\Utilities\Auth\WpUserManager::class; |
| 20 |
} |
| 21 |
} |
| 22 |
|