Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Cell;
4
 
5
class IgnoredErrors
6
{
7
    /** @var bool */
8
    private $numberStoredAsText = false;
9
 
10
    /** @var bool */
11
    private $formula = false;
12
 
13
    /** @var bool */
14
    private $twoDigitTextYear = false;
15
 
16
    /** @var bool */
17
    private $evalError = false;
18
 
19
    public function setNumberStoredAsText(bool $value): self
20
    {
21
        $this->numberStoredAsText = $value;
22
 
23
        return $this;
24
    }
25
 
26
    public function getNumberStoredAsText(): bool
27
    {
28
        return $this->numberStoredAsText;
29
    }
30
 
31
    public function setFormula(bool $value): self
32
    {
33
        $this->formula = $value;
34
 
35
        return $this;
36
    }
37
 
38
    public function getFormula(): bool
39
    {
40
        return $this->formula;
41
    }
42
 
43
    public function setTwoDigitTextYear(bool $value): self
44
    {
45
        $this->twoDigitTextYear = $value;
46
 
47
        return $this;
48
    }
49
 
50
    public function getTwoDigitTextYear(): bool
51
    {
52
        return $this->twoDigitTextYear;
53
    }
54
 
55
    public function setEvalError(bool $value): self
56
    {
57
        $this->evalError = $value;
58
 
59
        return $this;
60
    }
61
 
62
    public function getEvalError(): bool
63
    {
64
        return $this->evalError;
65
    }
66
}