dto2data/tests/unit/Converter/fixtures/FillTest/UUID.php

20 lines
305 B
PHP
Raw Normal View History

2021-08-29 12:28:06 +03:00
<?php
namespace Rinsvent\DTO2Data\Tests\unit\Converter\fixtures\FillTest;
class UUID
{
public string $id;
public int $version = 4;
public function __construct(string $id)
{
$this->id = $id;
}
public function __toString(): string
{
return $this->id;
}
2021-08-29 12:28:06 +03:00
}