- Added some field type (date, Datetime, Time) - Added a new @Filter annotation which allows to filter repository from relation into a method.
12 lines
244 B
PHP
12 lines
244 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property\Field;
|
|
|
|
class Date extends \Ulmus\Annotation\Property\Field {
|
|
|
|
public function __construct(? string $type = "date", ? int $length = null)
|
|
{
|
|
parent::__construct($type, $length);
|
|
}
|
|
}
|