Completed
Pull Request — master (#5)
by
unknown
08:42
created
src/Parser/CsvParser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,8 +168,8 @@
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @param $numRows
172
-     * @param $skipLine
171
+     * @param integer $numRows
172
+     * @param boolean $skipLine
173 173
      *
174 174
      * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
175 175
      *
Please login to merge, or discard this patch.
src/Parser/ParserInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -7,6 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param string $filePath
9 9
      * @param array $options
10
+     * @return void
10 11
      */
11 12
     public function __construct($filePath, array $options = []);
12 13
 
Please login to merge, or discard this patch.
src/Parser/XlsxParser.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     }
205 205
 
206 206
     /**
207
-     * @param $dir
207
+     * @param string $dir
208 208
      *
209 209
      * @return bool
210 210
      */
@@ -272,8 +272,8 @@  discard block
 block discarded – undo
272 272
     }
273 273
 
274 274
     /**
275
-     * @param $numRows
276
-     * @param $skipLine
275
+     * @param integer $numRows
276
+     * @param boolean $skipLine
277 277
      *
278 278
      * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
279 279
      *
Please login to merge, or discard this patch.
src/Spreadsheet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     protected $parser;
19 19
 
20 20
     /**
21
-     * @param $filePath
21
+     * @param string $filePath
22 22
      * @param string $fileType
23 23
      * @param array $options
24 24
      *
Please login to merge, or discard this patch.