Remove var_dump

This commit is contained in:
Adrien Loison 2022-01-21 14:30:26 +01:00 committed by GitHub
parent e95e0eeefd
commit 780c7020fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,7 +240,6 @@ EOD;
} elseif ($cell->isBoolean()) { } elseif ($cell->isBoolean()) {
$cellXML .= ' t="b"><v>' . (int) ($cell->getValue()) . '</v></c>'; $cellXML .= ' t="b"><v>' . (int) ($cell->getValue()) . '</v></c>';
} elseif ($cell->isNumeric()) { } elseif ($cell->isNumeric()) {
var_dump($cell);
$cellXML .= '><v>' . $this->stringHelper->formatNumericValue($cell->getValue()) . '</v></c>'; $cellXML .= '><v>' . $this->stringHelper->formatNumericValue($cell->getValue()) . '</v></c>';
} elseif ($cell->isError() && is_string($cell->getValueEvenIfError())) { } elseif ($cell->isError() && is_string($cell->getValueEvenIfError())) {
// only writes the error value if it's a string // only writes the error value if it's a string