1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 16:14:02 +00:00

ID generation

This commit is contained in:
Samuel Štancl 2019-09-11 19:25:30 +02:00
parent 958651099a
commit 445b2650cf
3 changed files with 24 additions and 13 deletions

View file

@ -9,9 +9,9 @@ interface UniqueIdentifierGenerator
/**
* Generate a unique identifier.
*
* @param string $domain
* @param string[] $domains
* @param array $data
* @return string
*/
public static function handle(string $domain, array $data = []): string;
public static function handle(array $domains, array $data = []): string;
}