Migrate tests to Pest
This commit is contained in:
17
tests/Integration/NumDocument.php
Normal file
17
tests/Integration/NumDocument.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
/**
|
||||
* @author Daniel J. Summers <daniel@bitbadger.solutions>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Test\Integration;
|
||||
|
||||
/**
|
||||
* A test document with a numeric ID
|
||||
*/
|
||||
class NumDocument
|
||||
{
|
||||
public function __construct(public int $id = 0, public string $value = '') { }
|
||||
}
|
||||
Reference in New Issue
Block a user