PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Contracts
/
Editing: UniqueIdentifierGenerator.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Contracts; interface UniqueIdentifierGenerator { /** * Generate a unique identifier. */ public static function generate($resource): string; }
SAVE
CANCEL