Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class ErrorSource |
||
8 | { |
||
9 | /** |
||
10 | * @var string|null |
||
11 | */ |
||
12 | protected $pointer; |
||
13 | |||
14 | /** |
||
15 | * @var string|null |
||
16 | */ |
||
17 | protected $parameter; |
||
18 | |||
19 | 4 | public function __construct(?string $pointer = null, ?string $parameter = null) |
|
23 | 2 | } |
|
24 | |||
25 | /** |
||
26 | * @return string|null |
||
27 | */ |
||
28 | 4 | public function getPointer() |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return string|null |
||
35 | */ |
||
36 | 4 | public function getParameter() |
|
41 |