| 1 | <?php |
||
| 19 | final class TagViewModel |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $id; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $name; |
||
| 30 | |||
| 31 | private function __construct( |
||
| 38 | |||
| 39 | public static function constructFromEntity(Tag $tag): self |
||
| 46 | |||
| 47 | public function getId(): string |
||
| 51 | |||
| 52 | public function getName(): string |
||
| 56 | } |
||
| 57 |