for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OpenIDConnectServerExamples\Repositories;
use OpenIDConnectServer\Repositories\IdentityProviderInterface;
use OpenIDConnectServerExamples\Entities\UserEntity;
class IdentityRepository implements IdentityProviderInterface
{
public function getUserEntityByIdentifier($identifier)
return new UserEntity();
}