@@ -159,8 +159,8 @@ |
||
159 | 159 | if ($s1 != -1 && |
160 | 160 | ($s1 + 1 < $this->comparator1->getRangeCount() || $s2 + 1 < $this->comparator2->getRangeCount())) { |
161 | 161 | // TODO: we need to find the proper way of representing an append. |
162 | - $leftStart = $s1 < $this->comparator1->getRangeCount()? $s1 + 1 : $s1; |
|
163 | - $rightStart = $s2 < $this->comparator2->getRangeCount()? $s2 + 1 : $s2; |
|
162 | + $leftStart = $s1 < $this->comparator1->getRangeCount() ? $s1 + 1 : $s1; |
|
163 | + $rightStart = $s2 < $this->comparator2->getRangeCount() ? $s2 + 1 : $s2; |
|
164 | 164 | |
165 | 165 | // TODO: We need to confirm that this is the proper order. |
166 | 166 | $differences[] = new RangeDifference( |
@@ -162,14 +162,14 @@ |
||
162 | 162 | $M = $topL2 - $bottomL2 + 1; |
163 | 163 | |
164 | 164 | $delta = $N - $M; |
165 | - $isEven = ($delta & 1) == 1? false : true; |
|
165 | + $isEven = ($delta & 1) == 1 ? false : true; |
|
166 | 166 | |
167 | 167 | $limit = min($this->maxDifferences, intval(ceil(($N + $M + 1) / 2))); |
168 | 168 | |
169 | 169 | // Offset to make it odd/even. |
170 | 170 | // a 0 or 1 that we add to the start offset to make it odd/even |
171 | - $valueToAddForward = ($M & 1) == 1? 1 : 0; |
|
172 | - $valueToAddBackward = ($N & 1) == 1? 1 : 0; |
|
171 | + $valueToAddForward = ($M & 1) == 1 ? 1 : 0; |
|
172 | + $valueToAddBackward = ($N & 1) == 1 ? 1 : 0; |
|
173 | 173 | |
174 | 174 | $startForward = -$M; |
175 | 175 | $endForward = $N; |
@@ -63,8 +63,8 @@ |
||
63 | 63 | $lastDiagonal[$origin] = $row; |
64 | 64 | $script[$origin] = null; |
65 | 65 | |
66 | - $lower = ($row == $rightSize)? $origin + 1 : $origin - 1; |
|
67 | - $upper = ($row == $leftSize)? $origin - 1 : $origin + 1; |
|
66 | + $lower = ($row == $rightSize) ? $origin + 1 : $origin - 1; |
|
67 | + $upper = ($row == $leftSize) ? $origin - 1 : $origin + 1; |
|
68 | 68 | |
69 | 69 | if ($lower > $upper) { |
70 | 70 | return []; |
@@ -206,12 +206,12 @@ |
||
206 | 206 | public function equals(RangeDifference $other): bool |
207 | 207 | { |
208 | 208 | return |
209 | - $this->kind == $other->kind() && |
|
210 | - $this->leftStart == $other->leftStart() && |
|
211 | - $this->leftLength == $other->leftLength() && |
|
212 | - $this->rightStart == $other->rightStart() && |
|
213 | - $this->rightLength == $other->rightLength() && |
|
214 | - $this->ancestorStart == $other->ancestorStart() && |
|
209 | + $this->kind == $other->kind() && |
|
210 | + $this->leftStart == $other->leftStart() && |
|
211 | + $this->leftLength == $other->leftLength() && |
|
212 | + $this->rightStart == $other->rightStart() && |
|
213 | + $this->rightLength == $other->rightLength() && |
|
214 | + $this->ancestorStart == $other->ancestorStart() && |
|
215 | 215 | $this->ancestorLength == $other->ancestorLength() |
216 | 216 | ; |
217 | 217 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | $distanceThis += $d->getRightLength(); |
106 | 106 | } |
107 | 107 | |
108 | - return (float)((0.0 + $distanceOther) / $other->getRangeCount() + |
|
108 | + return (float) ((0.0 + $distanceOther) / $other->getRangeCount() + |
|
109 | 109 | (0.0 + $distanceThis) / $this->getRangeCount()) / 2; |
110 | 110 | } |
111 | 111 | } |