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

15 lines
225 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;
}
}