18 lines
495 B
PHP
18 lines
495 B
PHP
<?php
|
|
|
|
namespace Lean\Api\Attribute;
|
|
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_CLASS)]
|
|
class EntityField
|
|
{
|
|
public function __construct(
|
|
public string $description = "",
|
|
public bool $mandatory = false,
|
|
public ?int $minLength = null,
|
|
public ?int $maxLength = null,
|
|
public ?string $regexFormat = null,
|
|
public mixed $example = null,
|
|
public ?string $field = null,
|
|
public ?string $setterMethod = null,
|
|
) {}
|
|
} |