16 lines
233 B
PHP
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
|
|
) {}
|
|
|
|
}
|