12 lines
207 B
PHP
12 lines
207 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace Test\Integration;
|
||
|
|
||
|
/**
|
||
|
* A sub-document for testing
|
||
|
*/
|
||
|
class SubDocument
|
||
|
{
|
||
|
public function __construct(public string $foo = '', public string $bar = '') { }
|
||
|
}
|