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

15 lines
200 B
PHP

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