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

This commit is contained in:
Pavel Zyukin 2016-06-03 19:09:37 +04:00 committed by Adrien Loison
parent 1d3a9f939c
commit 70c81e809f

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');
}