| 1 |
<?php |
| 2 |
|
| 3 |
namespace ReviewX\Utilities\Auth; |
| 4 |
|
| 5 |
\defined("ABSPATH") || exit; |
| 6 |
use ReviewX\WPDrill\Facade; |
| 7 |
/** |
| 8 |
* Class Client |
| 9 |
* |
| 10 |
* @method static bool has() |
| 11 |
* @method static object|null site() |
| 12 |
* @method static string getUid() |
| 13 |
* @method static int getSiteId() |
| 14 |
* @method static string getName() |
| 15 |
* @method static string getDomain() |
| 16 |
* @method static string getUrl() |
| 17 |
* @method static bool getSync() |
| 18 |
* @method static string getSecret() |
| 19 |
* @package ReviewX\Utilities\Auth |
| 20 |
*/ |
| 21 |
class Client extends Facade |
| 22 |
{ |
| 23 |
public static function getFacadeAccessor() : string |
| 24 |
{ |
| 25 |
return \ReviewX\Utilities\Auth\ClientManager::class; |
| 26 |
} |
| 27 |
} |
| 28 |
|