| 1 | <?php |
||
| 8 | class MatchingBlock implements \Countable |
||
| 9 | { |
||
| 10 | public $startInOld; |
||
| 11 | public $startInNew; |
||
| 12 | public $size; |
||
| 13 | |||
| 14 | 16 | public function __construct(int $startInOld, int $startInNew, int $size) |
|
| 20 | |||
| 21 | 16 | public function endInOld() : int |
|
| 25 | |||
| 26 | 16 | public function endInNew() : int |
|
| 30 | |||
| 31 | 16 | public function count() : int |
|
| 35 | } |
||
| 36 |