added error reporting & fixed things in index3.php

This commit is contained in:
2021-07-02 00:32:49 +02:00
parent 562ff50bb0
commit 4cd969bf87
2 changed files with 28 additions and 38 deletions

View File

@ -20,9 +20,9 @@ final class CSVXMLValidator
*/
public function __construct()
{
$error_msgs = [];
$inv_errors = [];
$depcon_errors = [];
$this->error_msgs = [];
$this->inv_errors = [];
$this->depcon_errors = [];
}
public function addError(String $error)