We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d409693 commit 9fd2d48Copy full SHA for 9fd2d48
src/Chunk.php
@@ -33,7 +33,7 @@ final class Chunk
33
private $endRange;
34
35
/**
36
- * @var array
+ * @var Line[]
37
*/
38
private $lines;
39
@@ -66,11 +66,17 @@ public function getEndRange(): int
66
return $this->endRange;
67
}
68
69
+ /**
70
+ * @return Line[]
71
+ */
72
public function getLines(): array
73
{
74
return $this->lines;
75
76
77
78
+ * @param Line[] $lines
79
80
public function setLines(array $lines): void
81
82
$this->lines = $lines;
0 commit comments