14 lines
213 B
PHP
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,
|
|
) {}
|
|
}
|