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