Files
LaravelSkeletonAPI/app/Kernel/Object/HasUuidAsIdentifier.php
2026-01-05 16:33:20 +04:00

11 lines
131 B
PHP

<?php
declare(strict_types=1);
namespace App\Kernel\Object;
interface HasUuidAsIdentifier
{
public function id(): string;
}