Add tests for autogenerated IDs

This commit is contained in:
2024-06-10 23:06:53 -04:00
parent 9e617e7e23
commit 2f1db190d7
2 changed files with 232 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
<?php 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 = '') { }
}