Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

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