20240423#1

This commit is contained in:
User
2024-04-23 05:15:45 +03:00
parent 4ad36c6034
commit 009832a046
3 changed files with 56 additions and 19 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
* Created by PhpStorm.
* User: Zuev Yuri
* Date: 23.04.2024
* Time: 3:58
*/
namespace Base\Domain;
interface ValueObjectInterface {
public function get();
public function __toString(): string;
}