10 lines
120 B
PHP
10 lines
120 B
PHP
<?php
|
|
|
|
namespace Rmphp\Storage\Repository;
|
|
|
|
interface ValueObjectInterface {
|
|
|
|
public function __toString(): string;
|
|
|
|
}
|