Completed
Push — develop ( ba7054...942ad7 )
by Adrien
21:30
created
src/PhpSpreadsheet/Reader/Gnumeric.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,6 +165,9 @@  discard block
 block discarded – undo
165 165
         return $worksheetInfo;
166 166
     }
167 167
 
168
+    /**
169
+     * @param string $filename
170
+     */
168 171
     private function gzfileGetContents($filename)
169 172
     {
170 173
         $file = @gzopen($filename, 'rb');
@@ -201,7 +204,7 @@  discard block
 block discarded – undo
201 204
      * @param     string         $pFilename
202 205
      * @param    Spreadsheet    $spreadsheet
203 206
      * @throws     Exception
204
-     * @return     PhpSpreadsheet
207
+     * @return     Spreadsheet
205 208
      */
206 209
     public function loadIntoExisting($pFilename, Spreadsheet $spreadsheet)
207 210
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Writer/HTML.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     /**
135 135
      * Create a new Spreadsheet_Writer_HTML
136 136
      *
137
-     * @param    Spreadsheet    $spreadsheet
137
+     * @param    \PhpSpreadsheet\Spreadsheet    $spreadsheet
138 138
      */
139 139
     public function __construct(Spreadsheet $spreadsheet)
140 140
     {
@@ -1420,7 +1420,7 @@  discard block
 block discarded – undo
1420 1420
      * Set images root
1421 1421
      *
1422 1422
      * @param string $pValue
1423
-     * @return Spreadsheet_Writer_HTML
1423
+     * @return HTML
1424 1424
      */
1425 1425
     public function setImagesRoot($pValue = '.')
1426 1426
     {
@@ -1442,8 +1442,8 @@  discard block
 block discarded – undo
1442 1442
     /**
1443 1443
      * Set embed images
1444 1444
      *
1445
-     * @param bool $pValue
1446
-     * @return Spreadsheet_Writer_HTML
1445
+     * @param string|boolean $pValue
1446
+     * @return HTML
1447 1447
      */
1448 1448
     public function setEmbedImages($pValue = '.')
1449 1449
     {
@@ -1466,7 +1466,7 @@  discard block
 block discarded – undo
1466 1466
      * Set use inline CSS?
1467 1467
      *
1468 1468
      * @param bool $pValue
1469
-     * @return Spreadsheet_Writer_HTML
1469
+     * @return HTML
1470 1470
      */
1471 1471
     public function setUseInlineCss($pValue = false)
1472 1472
     {
Please login to merge, or discard this patch.