Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 57.14% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Pane |
||
6 | { |
||
7 | 56 | public function __construct(private string $position, private string $sqref = '', private string $activeCell = '') |
|
8 | { |
||
9 | 56 | } |
|
10 | |||
11 | 1 | public function getPosition(): string |
|
12 | { |
||
13 | 1 | return $this->position; |
|
14 | } |
||
15 | |||
16 | 1 | public function getSqref(): string |
|
19 | } |
||
20 | |||
21 | public function setSqref(string $sqref): self |
||
22 | { |
||
23 | $this->sqref = $sqref; |
||
24 | |||
25 | return $this; |
||
26 | } |
||
27 | |||
28 | 1 | public function getActiveCell(): string |
|
29 | { |
||
30 | 1 | return $this->activeCell; |
|
31 | } |
||
32 | |||
33 | public function setActiveCell(string $activeCell): self |
||
38 | } |
||
39 | } |
||
40 |