• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

PHPOffice / PhpSpreadsheet / 18013950625

25 Sep 2025 04:20PM UTC coverage: 95.867% (+0.3%) from 95.602%
18013950625

push

github

web-flow
Merge pull request #4663 from oleibman/tweakcoveralls

Tweak Coveralls

45116 of 47061 relevant lines covered (95.87%)

373.63 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

62.5
/src/PhpSpreadsheet/Worksheet/Pane.php
1
<?php
2

3
namespace PhpOffice\PhpSpreadsheet\Worksheet;
4

5
class Pane
6
{
7
    private string $sqref;
8

9
    private string $activeCell;
10

11
    private string $position;
12

13
    public function __construct(string $position, string $sqref = '', string $activeCell = '')
59✔
14
    {
15
        $this->sqref = $sqref;
59✔
16
        $this->activeCell = $activeCell;
59✔
17
        $this->position = $position;
59✔
18
    }
19

20
    public function getPosition(): string
1✔
21
    {
22
        return $this->position;
1✔
23
    }
24

25
    public function getSqref(): string
1✔
26
    {
27
        return $this->sqref;
1✔
28
    }
29

30
    public function setSqref(string $sqref): self
×
31
    {
32
        $this->sqref = $sqref;
×
33

34
        return $this;
×
35
    }
36

37
    public function getActiveCell(): string
1✔
38
    {
39
        return $this->activeCell;
1✔
40
    }
41

42
    public function setActiveCell(string $activeCell): self
×
43
    {
44
        $this->activeCell = $activeCell;
×
45

46
        return $this;
×
47
    }
48
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc