comparison vendor/sebastian/diff/src/Chunk.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children 1fec387a4317
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
1 <?php 1 <?php
2 /* 2 /*
3 * This file is part of the Diff package. 3 * This file is part of sebastian/diff.
4 * 4 *
5 * (c) Sebastian Bergmann <sebastian@phpunit.de> 5 * (c) Sebastian Bergmann <sebastian@phpunit.de>
6 * 6 *
7 * For the full copyright and license information, please view the LICENSE 7 * For the full copyright and license information, please view the LICENSE
8 * file that was distributed with this source code. 8 * file that was distributed with this source code.
9 */ 9 */
10 10
11 namespace SebastianBergmann\Diff; 11 namespace SebastianBergmann\Diff;
12 12
13 /**
14 */
15 class Chunk 13 class Chunk
16 { 14 {
17 /** 15 /**
18 * @var int 16 * @var int
19 */ 17 */
26 24
27 /** 25 /**
28 * @var int 26 * @var int
29 */ 27 */
30 private $end; 28 private $end;
29
31 /** 30 /**
32 * @var int 31 * @var int
33 */ 32 */
34 private $endRange; 33 private $endRange;
35 34