Complete test migration

This commit is contained in:
2024-11-15 22:25:14 -05:00
parent 096ca53494
commit 3810143d68
15 changed files with 305 additions and 505 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* @author Daniel J. Summers <daniel@bitbadger.solutions>
* @license MIT
*/
declare(strict_types=1);
namespace Test\Integration;
class TestDocument
{
public function __construct(public string $id = '', public string $value = '', public int $num_value = 0,
public ?SubDocument $sub = null) { }
}