1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <?php
|
| namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx;
|
| class SharedFormula
| {
| private string $master;
|
| private string $formula;
|
| public function __construct(string $master, string $formula)
| {
| $this->master = $master;
| $this->formula = $formula;
| }
|
| public function master(): string
| {
| return $this->master;
| }
|
| public function formula(): string
| {
| return $this->formula;
| }
| }
|
|