mirror of
https://github.com/anikeen-com/id.git
synced 2026-03-18 16:16:13 +00:00
first commit
This commit is contained in:
21
src/Id/Facades/AnikeenId.php
Normal file
21
src/Id/Facades/AnikeenId.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Anikeen\Id\Facades;
|
||||
|
||||
use Anikeen\Id\AnikeenId as AnikeenIdService;
|
||||
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 AnikeenId extends Facade
|
||||
{
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return AnikeenIdService::class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user