Files
breadcrumb-the-shire/lib/Repository/User/UserExternalIdentityRepositoryInterface.php
2026-03-05 08:26:51 +01:00

13 lines
354 B
PHP

<?php
namespace MintyPHP\Repository\User;
interface UserExternalIdentityRepositoryInterface
{
public function findByProviderTidOid(string $provider, string $tid, string $oid): ?array;
public function findByProviderIssuerSubject(string $provider, string $issuer, string $subject): ?array;
public function createLink(array $data): mixed;
}