1 | <?php |
||
28 | class DiffChunkLineAdded extends DiffChunkLineChanged |
||
29 | { |
||
30 | /** |
||
31 | * Class constructor |
||
32 | * |
||
33 | * @param int $number line number |
||
34 | * @param string $content the content |
||
35 | */ |
||
36 | 2 | public function __construct(int $number, string $content) |
|
42 | |||
43 | /** |
||
44 | * Get destination line number |
||
45 | * |
||
46 | * @return int |
||
47 | */ |
||
48 | public function getOriginNumber(): ?int |
||
52 | } |
||
53 |