Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 02:40:42 +03:00
commit 98a4094c5e
53 changed files with 2633 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace Pronchev\Pinecore\Orm\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
final class Field
{
public function __construct(
public readonly ?string $name = null,
) {}
}