Files
rmphp-storage/src/Repository/ValueObjectInterface.php
2025-06-22 01:05:12 +03:00

10 lines
120 B
PHP

<?php
namespace Rmphp\Storage\Repository;
interface ValueObjectInterface {
public function __toString(): string;
}