mirror of
https://github.com/danog/Valinor.git
synced 2024-12-13 17:47:23 +01:00
11 lines
147 B
PHP
11 lines
147 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Integration\Mapping\Fixture;
|
||
|
|
||
|
final class SimpleObject
|
||
|
{
|
||
|
public string $value;
|
||
|
}
|