From 15dd11df59ff9515a968f98b5c4fcd2619f96a27 Mon Sep 17 00:00:00 2001 From: Wolfgang Bund Date: Wed, 27 Oct 2021 09:32:06 +0200 Subject: [PATCH] Update XMLWriter.php So the function addRow is from the same type (same parameters) than the parent one. --- src/SimpleExcel/Writer/XMLWriter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SimpleExcel/Writer/XMLWriter.php b/src/SimpleExcel/Writer/XMLWriter.php index 3967956..af7e22a 100644 --- a/src/SimpleExcel/Writer/XMLWriter.php +++ b/src/SimpleExcel/Writer/XMLWriter.php @@ -54,7 +54,7 @@ public function __construct(){ * @param array $values An array contains ordered value for every cell * @return void */ - public function addRow($values){ + public function addRow($values, $end = true){ $row = &$this->tabl_data; $row .= ' ';