1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 15:14:04 +00:00
tenancy/src/Interfaces/UniqueIdentifierGenerator.php
2019-08-21 18:18:08 +00:00

15 lines
299 B
PHP

<?php
namespace Stancl\Tenancy\Interfaces;
interface UniqueIdentifierGenerator
{
/**
* Generate a unique identifier.
*
* @param string $domain
* @param array $data
* @return string
*/
public static function handle(string $domain, array $data = []): string;
}