20250330#1

This commit is contained in:
User
2025-03-30 13:28:30 +03:00
parent 96ee46476c
commit fd996d40c8
9 changed files with 193 additions and 39 deletions

View File

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