Files
rmphp-storage/src/Attribute/ValueObject.php
2025-04-27 01:31:26 +03:00

16 lines
233 B
PHP

<?php
namespace Rmphp\Storage\Attribute;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class ValueObject {
public function __construct(
public ?string $propertyName = null,
public bool $firstProperty = false
) {}
}