Version 1.0.0

This commit is contained in:
2025-12-12 09:19:05 +04:00
commit c9164c4aa8
7 changed files with 108 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Diffhead\PHP\Interfaces\Object;
interface ArrayInstantiable
{
public static function fromArray(array $data): self;
}

10
src/Object/HasUuid.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Diffhead\PHP\Interfaces\Object;
interface HasUuid
{
public function uuid(): string;
}