init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
26
lib/PhpSpreadsheet/Reader/Xlsx/SharedFormula.php
Normal file
26
lib/PhpSpreadsheet/Reader/Xlsx/SharedFormula.php
Normal file
|
|
@ -0,0 +1,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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue