Total Complexity | 6 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 62.5% |
Changes | 0 |
1 | <?php |
||
5 | class Pane |
||
6 | { |
||
7 | private string $sqref; |
||
8 | |||
9 | private string $activeCell; |
||
10 | |||
11 | private string $position; |
||
12 | |||
13 | 58 | public function __construct(string $position, string $sqref = '', string $activeCell = '') |
|
18 | } |
||
19 | |||
20 | 1 | public function getPosition(): string |
|
23 | } |
||
24 | |||
25 | 1 | public function getSqref(): string |
|
26 | { |
||
27 | 1 | return $this->sqref; |
|
28 | } |
||
29 | |||
30 | public function setSqref(string $sqref): self |
||
31 | { |
||
32 | $this->sqref = $sqref; |
||
33 | |||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | 1 | public function getActiveCell(): string |
|
38 | { |
||
39 | 1 | return $this->activeCell; |
|
40 | } |
||
41 | |||
42 | public function setActiveCell(string $activeCell): self |
||
47 | } |
||
48 | } |
||
49 |