Files
pinecore/src/Orm/Attributes/Field.php
pronchev 98a4094c5e Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-22 02:40:42 +03:00

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,
) {}
}