for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpOffice\PhpSpreadsheet\Cell;
class IgnoredErrors
{
private bool $numberStoredAsText = false;
private bool $formula = false;
private bool $formulaRange = false;
private bool $twoDigitTextYear = false;
private bool $evalError = false;
public function setNumberStoredAsText(bool $value): self
$this->numberStoredAsText = $value;
return $this;
}
public function getNumberStoredAsText(): bool
return $this->numberStoredAsText;
public function setFormula(bool $value): self
$this->formula = $value;
public function getFormula(): bool
return $this->formula;
public function setFormulaRange(bool $value): self
$this->formulaRange = $value;
public function getFormulaRange(): bool
return $this->formulaRange;
public function setTwoDigitTextYear(bool $value): self
$this->twoDigitTextYear = $value;
public function getTwoDigitTextYear(): bool
return $this->twoDigitTextYear;
public function setEvalError(bool $value): self
$this->evalError = $value;
public function getEvalError(): bool
return $this->evalError;