14 lines
243 B
PHP
14 lines
243 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Property;
|
|
|
|
use Ulmus\Attribute\IndexTypeEnum;
|
|
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY)]
|
|
class Unique {
|
|
|
|
public function __construct(
|
|
public IndexTypeEnum $type = IndexTypeEnum::Unique,
|
|
) {}
|
|
}
|