1<?php
2/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */
3
4namespace Icinga\Web\Form\Element;
5
6use Icinga\Web\Form\FormElement;
7
8/**
9 * A time input control
10 */
11class Time extends FormElement
12{
13    /**
14     * Form view helper to use for rendering
15     *
16     * @var string
17     */
18    public $helper = 'formTime';
19}
20