Completed
Push — feature/multi_order ( eb7707 )
by Laurent
01:37
created

InputTime::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/*
3
 * This file is part of the Adlogix package.
4
 *
5
 * (c) Allan Segebarth <[email protected]>
6
 * (c) Jean-Jacques Courtens <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace flightlog\form;
13
14
15
class InputTime extends BaseInput
16
{
17
    /**
18
     * @param string $name
19
     * @param array  $options
20
     */
21
    public function __construct($name, array $options = [])
22
    {
23
        parent::__construct($name, FormElementInterface::TYPE_TIME, $options);
24
    }
25
}