1 | <?php |
||
9 | class RowMatch |
||
10 | { |
||
11 | /** |
||
12 | * @var int |
||
13 | */ |
||
14 | protected $startInNew; |
||
15 | |||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | protected $startInOld; |
||
20 | |||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | protected $endInNew; |
||
25 | |||
26 | /** |
||
27 | * @var int |
||
28 | */ |
||
29 | protected $endInOld; |
||
30 | |||
31 | /** |
||
32 | * @var float|null |
||
33 | */ |
||
34 | protected $percentage; |
||
35 | |||
36 | /** |
||
37 | * RowMatch constructor. |
||
38 | * |
||
39 | * @param int $startInNew |
||
40 | * @param int $startInOld |
||
41 | * @param int $endInNew |
||
42 | * @param int $endInOld |
||
43 | * @param float|null $percentage |
||
44 | */ |
||
45 | public function __construct($startInNew = 0, $startInOld = 0, $endInNew = 0, $endInOld = 0, $percentage = null) |
||
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | public function getStartInNew() |
||
61 | |||
62 | /** |
||
63 | * @param int $startInNew |
||
64 | * |
||
65 | * @return RowMatch |
||
66 | */ |
||
67 | public function setStartInNew($startInNew) |
||
73 | |||
74 | /** |
||
75 | * @return int |
||
76 | */ |
||
77 | public function getStartInOld() |
||
81 | |||
82 | /** |
||
83 | * @param int $startInOld |
||
84 | * |
||
85 | * @return RowMatch |
||
86 | */ |
||
87 | public function setStartInOld($startInOld) |
||
93 | |||
94 | /** |
||
95 | * @return int |
||
96 | */ |
||
97 | public function getEndInNew() |
||
101 | |||
102 | /** |
||
103 | * @param int $endInNew |
||
104 | * |
||
105 | * @return RowMatch |
||
106 | */ |
||
107 | public function setEndInNew($endInNew) |
||
113 | |||
114 | /** |
||
115 | * @return int |
||
116 | */ |
||
117 | public function getEndInOld() |
||
121 | |||
122 | /** |
||
123 | * @param int $endInOld |
||
124 | * |
||
125 | * @return RowMatch |
||
126 | */ |
||
127 | public function setEndInOld($endInOld) |
||
133 | } |
||
134 |