12 lines
211 B
PHP
12 lines
211 B
PHP
|
<?php 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 = '') { }
|
||
|
}
|