Files
pinecore/src/Orm/Attributes/Collection.php

14 lines
213 B
PHP
Raw Normal View History

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