- Added some field type (date, Datetime, Time) - Added a new @Filter annotation which allows to filter repository from relation into a method.
9 lines
112 B
PHP
9 lines
112 B
PHP
<?php
|
|
|
|
namespace Ulmus\Entity\Field;
|
|
|
|
class Time extends Datetime {
|
|
|
|
public string $format = "H:i:s";
|
|
}
|