Total Complexity | 2 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class ParserReadDesign extends AbstractParser implements ParserInterface |
||
20 | { |
||
21 | /** |
||
22 | * @return [] |
||
|
|||
23 | */ |
||
24 | 1 | protected function getProperties() |
|
25 | { |
||
26 | return [ |
||
27 | 1 | 'name', |
|
28 | 1 | 'height', |
|
29 | 1 | 'width', |
|
30 | 1 | 'storageMode', |
|
31 | 1 | 'saveDesign', |
|
32 | 1 | 'printDesign', |
|
33 | 1 | 'driverId', |
|
34 | 1 | 'printCount', |
|
35 | 1 | 'cycleSize', |
|
36 | 1 | 'readOk', |
|
37 | 1 | 'lineArray', |
|
38 | 1 | 'boxArray', |
|
39 | 1 | 'ttfArray', |
|
40 | 1 | 'barcodeArray', |
|
41 | 1 | 'pictureArray', |
|
42 | 1 | 'promptArray', |
|
43 | 1 | 'seqArray', |
|
44 | 1 | 'rtcArray', |
|
45 | 1 | 'databaseArray', |
|
46 | 1 | 'userIdArray', |
|
47 | 1 | 'shiftCodeArray', |
|
48 | 1 | 'machineIdArray', |
|
49 | 1 | 'databaseFieldArray', |
|
50 | 1 | 'macroArray', |
|
51 | 1 | 'macroOutputArray', |
|
52 | 1 | 'serialVarArray', |
|
53 | 'settingsArray' |
||
54 | 1 | ]; |
|
55 | } |
||
56 | |||
57 | /** |
||
58 | * @return EntityReadDesign |
||
59 | */ |
||
60 | 1 | protected function getEntity() |
|
63 | } |
||
64 | } |
||
65 |