mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 17:04:04 +00:00
[1.8.0] Custom id scheme (#108)
* Add UniqueIdentifierGenerators * Apply fixes from StyleCI
This commit is contained in:
parent
787063ed73
commit
f590e2ce2a
5 changed files with 48 additions and 3 deletions
13
src/UUIDGenerator.php
Normal file
13
src/UUIDGenerator.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Stancl\Tenancy;
|
||||
|
||||
use Stancl\Tenancy\Interfaces\UniqueIdentifierGenerator;
|
||||
|
||||
class UUIDGenerator implements UniqueIdentifierGenerator
|
||||
{
|
||||
public static function handle(string $domain, array $data = []): string
|
||||
{
|
||||
return (string) \Webpatser\Uuid\Uuid::generate(1, $domain);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue