Page MenuHomePhorge

IdentityRepository.php
No OneTemporary

Authored By
Unknown
Size
436 B
Referenced Files
None
Subscribers
None

IdentityRepository.php

<?php
namespace App\Auth;
use OpenIDConnect\Interfaces\IdentityEntityInterface;
use OpenIDConnect\Interfaces\IdentityRepositoryInterface;
class IdentityRepository implements IdentityRepositoryInterface
{
public function getByIdentifier(string $identifier): IdentityEntityInterface
{
$identityEntity = new IdentityEntity();
$identityEntity->setIdentifier($identifier);
return $identityEntity;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:56 AM (1 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
11/25/f0de663f48530e1f3828ee33d1f2
Default Alt Text
IdentityRepository.php (436 B)

Event Timeline