Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
4 | class CodeLimits |
||
5 | { |
||
6 | protected $startLine; |
||
7 | protected $endLine; |
||
8 | |||
9 | public function __construct(int $startLine, int $endLine) |
||
10 | { |
||
11 | $this->startLine = $startLine; |
||
12 | $this->endLine = $endLine; |
||
13 | } |
||
14 | |||
15 | public function getStartLine(): int |
||
18 | } |
||
19 | |||
20 | public function getEndLine(): int |
||
25 |