2024-07-21 01:47:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Daniel J. Summers <daniel@bitbadger.solutions>
|
|
|
|
* @license MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2024-06-08 23:58:45 +00:00
|
|
|
|
|
|
|
namespace Test\Integration;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A sub-document for testing
|
|
|
|
*/
|
|
|
|
class SubDocument
|
|
|
|
{
|
|
|
|
public function __construct(public string $foo = '', public string $bar = '') { }
|
|
|
|
}
|