Daniel J. Summers
1ab961e35a
- Add SQLite throwaway DB implementation - Add integration tests for Custom class
10 lines
263 B
PHP
10 lines
263 B
PHP
<?php 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) { }
|
|
}
|