blob: 47fe9c9ea4702a8402ec1511fd7ebbf3daa7465f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
namespace Nsfisis\Albatross\Form;
final class FormItem
{
public function __construct(
public readonly string $name,
public readonly string $type,
public readonly ?string $label = null,
public readonly bool $isRequired = false,
public readonly bool $isDisabled = false,
public readonly string $extra = '',
) {
}
}
|