17 lines
423 B
PHP
17 lines
423 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Property\Field;
|
|
|
|
#[\Attribute(\Attribute::TARGET_PROPERTY)]
|
|
class Time extends \Ulmus\Attribute\Property\Field
|
|
{
|
|
public function __construct(
|
|
public ? string $name = null,
|
|
public ? string $type = "time",
|
|
public array $attributes = [],
|
|
public bool $nullable = false,
|
|
public mixed $default = null,
|
|
public bool $readonly = false,
|
|
) {}
|
|
}
|