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,17 @@
<?php
/**
* @author Daniel J. Summers <daniel@bitbadger.solutions>
* @license MIT
*/
declare(strict_types=1);
namespace Test\Integration;
/**
* A test document with a numeric ID
*/
class NumDocument
{
public function __construct(public int $id = 0, public string $value = '') { }
}