Total Complexity | 2 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class ParserVarSeq extends AbstractParser implements ParserInterface |
||
20 | { |
||
21 | /** |
||
22 | * @return [] |
||
|
|||
23 | */ |
||
24 | 2 | protected function getProperties() |
|
25 | { |
||
26 | return [ |
||
27 | 2 | 'name', |
|
28 | 2 | 'prompt', |
|
29 | 2 | 'length', |
|
30 | 2 | 'interval', |
|
31 | 2 | 'inputType', |
|
32 | 2 | 'outputType', |
|
33 | 2 | 'minValue', |
|
34 | 2 | 'maxValue', |
|
35 | 2 | 'rollOver', |
|
36 | 2 | 'fixedStart', |
|
37 | 2 | 'startValue', |
|
38 | 2 | 'paddingType', |
|
39 | 2 | 'repeatCount', |
|
40 | 'resumeCount' |
||
41 | 2 | ]; |
|
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return EntityVarSeq |
||
46 | */ |
||
47 | 2 | protected function getEntity() |
|
50 | } |
||
51 | } |
||
52 |