Fix WriterInterface docblock typo

This commit is contained in:
Chris Muthig 2017-09-05 15:32:43 -07:00 committed by Adrien Loison
parent fd6dd46b25
commit 3bbff7ea7d

View File

@ -35,7 +35,7 @@ interface WriterInterface
* @param array $dataRow Array containing data to be streamed. * @param array $dataRow Array containing data to be streamed.
* Example $dataRow = ['data1', 1234, null, '', 'data5']; * Example $dataRow = ['data1', 1234, null, '', 'data5'];
* @return WriterInterface * @return WriterInterface
* @throws \Box\Spout\Writer\Exception\WriterNotOpenedException If the writer has not been opened yetthe writer * @throws \Box\Spout\Writer\Exception\WriterNotOpenedException If the writer has not been opened yet
* @throws \Box\Spout\Common\Exception\IOException If unable to write data * @throws \Box\Spout\Common\Exception\IOException If unable to write data
*/ */
public function addRow(array $dataRow); public function addRow(array $dataRow);