| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/laminas/laminas-filter/src/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/laminas/laminas-filter/src/DateSelect.php |
<?php
declare(strict_types=1);
namespace Laminas\Filter;
/**
* @psalm-type Options = array{
* null_on_empty?: bool,
* null_on_all_empty?: bool,
* ...
* }
* @template TOptions of Options
* @template-extends AbstractDateDropdown<TOptions>
* @final
*/
class DateSelect extends AbstractDateDropdown
{
/**
* Year-Month-Day
*
* @var string
*/
protected $format = '%3$s-%2$s-%1$s';
/** @var int */
protected $expectedInputs = 3;
}