10 lines
144 B
PHP
10 lines
144 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Casters;
|
|
|
|
class SimpleValue
|
|
{
|
|
public function __construct(public readonly int $value) {}
|
|
}
|