Conditions | 1 |
Paths | 1 |
Total Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function __construct( |
||
29 | $name, |
||
30 | $type, |
||
31 | $key = null, |
||
32 | $description = '', |
||
33 | callable $formatter = null, |
||
34 | callable $resolver = null, |
||
35 | array $caps = [] |
||
36 | ) { |
||
37 | parent::__construct( |
||
38 | $name, |
||
39 | $type, |
||
40 | $key, |
||
41 | $description, |
||
42 | $formatter, |
||
43 | $resolver, |
||
44 | $caps |
||
45 | ); |
||
46 | |||
47 | $this->setUseForInput(false); |
||
48 | } |
||
49 | } |
||
50 |