Eccube\Service\CsvImportService::getErrors PHP Method

getErrors() public method

Get rows that have an invalid number of columns
public getErrors ( ) : array
return array
    public function getErrors()
    {
        if (0 === $this->key()) {
            // Iterator has not yet been processed, so do that now
            foreach ($this as $row) {
                /* noop */
            }
        }
        return $this->errors;
    }