first commit

This commit is contained in:
2025-04-27 04:02:46 +02:00
commit 05e8cca347
47 changed files with 2723 additions and 0 deletions

View 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;
}
}