Completed
Push — master ( 3c5c0f...ec5ff6 )
by Laurent
01:40
created

Hidden::__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
 *
4
 */
5
6
namespace flightlog\form;
7
8
/**
9
 * Hidden class
10
 *
11
 * @author Laurent De Coninck <[email protected]>
12
 */
13
class Hidden extends BaseInput
14
{
15
16
    /**
17
     * @param string $name
18
     * @param array  $options
19
     */
20
    public function __construct($name, array $options = [])
21
    {
22
        parent::__construct($name, FormElementInterface::TYPE_HIDDEN, $options);
23
    }
24
}