-
Marko Ivancic authoredMarko Ivancic authored
ConnectedServicesInterface.php 314 B
<?php
declare(strict_types=1);
namespace SimpleSAML\Module\accounting\Data\Stores\Interfaces;
use SimpleSAML\Module\accounting\Entities\ConnectedService;
interface ConnectedServicesInterface extends DataStoreInterface
{
public function getConnectedServices(string $userIdentifier): ConnectedService\Bag;
}