mirror of
https://github.com/danog/Valinor.git
synced 2025-01-11 23:28:23 +01:00
12 lines
241 B
PHP
12 lines
241 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Integration\Mapping\Fixture;
|
||
|
|
||
|
// @PHP8.1 move inside \CuyZ\Valinor\Tests\Integration\Mapping\ReadonlyMappingTest
|
||
|
final class ReadonlyValues
|
||
|
{
|
||
|
public readonly string $value;
|
||
|
}
|