10 lines
171 B
PHP
10 lines
171 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Property;
|
|
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY)]
|
|
class Limit {
|
|
public function __construct(
|
|
public int $value,
|
|
) {}
|
|
} |