Migrate tests to Pest (#8)
Reviewed-on: #8
This commit was merged in pull request #8.
This commit is contained in:
15
tests/Integration/TestDocument.php
Normal file
15
tests/Integration/TestDocument.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
* @author Daniel J. Summers <daniel@bitbadger.solutions>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
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) { }
|
||||
}
|
||||
Reference in New Issue
Block a user