14 lines
219 B
PHP
14 lines
219 B
PHP
<?php
|
|
|
|
namespace Pronchev\Pinecore\Orm\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_PROPERTY)]
|
|
final class Field
|
|
{
|
|
public function __construct(
|
|
public readonly ?string $name = null,
|
|
) {}
|
|
}
|