Completed
Pull Request — master (#42)
by Sam
02:33
created
src/DataExtractor/CsvTableReader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 	private $handle;
10 10
 	private $columns;
11 11
 
12
+	/**
13
+	 * @param string $filename
14
+	 */
12 15
 	function __construct($filename) {
13 16
 		$this->filename = $filename;
14 17
 	}
Please login to merge, or discard this patch.
src/DataExtractor/CsvTableWriter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 	private $handle;
10 10
 	private $columns;
11 11
 
12
+	/**
13
+	 * @param string $filename
14
+	 */
12 15
 	function __construct($filename) {
13 16
 		$this->filename = $filename;
14 17
 	}
Please login to merge, or discard this patch.