mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-14 14:05:52 +00:00
23 lines
644 B
PHP
23 lines
644 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bitinflow\Accounts\Facades;
|
|
|
|
use Bitinflow\Accounts\BitinflowAccounts as BitinflowAccountsService;
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
/**
|
|
* @method static string|static cookie(string $cookie = null)
|
|
* @method static Authenticatable actingAs($user, $scopes = [], $guard = 'api')
|
|
* @method static static withClientId(string $clientId): self
|
|
* @method static string getClientSecret(): string
|
|
*/
|
|
class BitinflowAccounts extends Facade
|
|
{
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return BitinflowAccountsService::class;
|
|
}
|
|
} |