11 lines
289 B
PHP
11 lines
289 B
PHP
<?php
|
|
|
|
namespace Packback\Lti1p3\Interfaces;
|
|
|
|
interface IDatabase
|
|
{
|
|
public function findRegistrationByIssuer(string $iss, ?string $clientId = null): ?ILtiRegistration;
|
|
|
|
public function findDeployment(string $iss, string $deploymentId, ?string $clientId = null): ?ILtiDeployment;
|
|
}
|