18 lines
		
	
	
		
			290 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			290 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @author Daniel J. Summers <daniel@bitbadger.solutions>
 | 
						|
 * @license MIT
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Test\Integration;
 | 
						|
 | 
						|
/**
 | 
						|
 * A sub-document for testing
 | 
						|
 */
 | 
						|
class SubDocument
 | 
						|
{
 | 
						|
    public function __construct(public string $foo = '', public string $bar = '') { }
 | 
						|
}
 |