Add the ability to pass an array with various keys to addRows()

This commit is contained in:
glukkkk 2016-06-03 18:43:49 +04:00 committed by Pavel Zyukin
parent 1d3a9f939c
commit aeafe316d0

View File

@ -238,7 +238,8 @@ abstract class AbstractWriter implements WriterInterface
public function addRows(array $dataRows)
{
if (!empty($dataRows)) {
if (!is_array($dataRows[0])) {
$firstRow = reset($dataRows);
if (!is_array($firstRow)) {
throw new InvalidArgumentException('The input should be an array of arrays');
}