20250427#1

This commit is contained in:
User
2025-04-27 01:31:26 +03:00
parent 91af1ea14f
commit 335c4d240c
5 changed files with 26 additions and 11 deletions

View File

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