Test Failed
Pull Request — master (#30)
by Scott
02:49
created

CodeLimits   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 21
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A getStartLine() 0 4 1
A getEndLine() 0 4 1
1
<?php
2
namespace exussum12\CoverageChecker;
3
4
class CodeLimits
5
{
6
    protected $startLine;
7
    protected $endLine;
8
9
    public function __construct($startLine, $endLine)
10
    {
11
        $this->startLine = $startLine;
12
        $this->endLine = $endLine;
13
    }
14
15
    public function getStartLine()
16
    {
17
        return $this->startLine;
18
    }
19
20
    public function getEndLine()
21
    {
22
        return $this->endLine;
23
    }
24
}
25