Files
pinecore/src/Orm/Attributes/Collection.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
213 B
PHP

<?php
namespace Pronchev\Pinecore\Orm\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
final class Collection
{
public function __construct(
public readonly string $name,
) {}
}