16 lines
221 B
PHP
16 lines
221 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Casters;
|
|
|
|
use Icefox\DTO\DataObject;
|
|
|
|
readonly class WithGlobalCaster
|
|
{
|
|
use DataObject;
|
|
|
|
public function __construct(
|
|
public SimpleValue $value,
|
|
) {}
|
|
}
|