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