From 3bbff7ea7df9c2fd3437b3ff416e4cddcd6ed739 Mon Sep 17 00:00:00 2001 From: Chris Muthig Date: Tue, 5 Sep 2017 15:32:43 -0700 Subject: [PATCH] Fix WriterInterface docblock typo --- src/Spout/Writer/WriterInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spout/Writer/WriterInterface.php b/src/Spout/Writer/WriterInterface.php index e2d9f8d..93a6ee2 100644 --- a/src/Spout/Writer/WriterInterface.php +++ b/src/Spout/Writer/WriterInterface.php @@ -35,7 +35,7 @@ interface WriterInterface * @param array $dataRow Array containing data to be streamed. * Example $dataRow = ['data1', 1234, null, '', 'data5']; * @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 */ public function addRow(array $dataRow);