Test Setup Failed
Pull Request — develop_3.0 (#434)
by Hura
03:04
created
src/Spout/Writer/Common/Entity/Cell.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,6 @@  discard block
 block discarded – undo
97 97
     }
98 98
 
99 99
     /**
100
-     * @param Style $style|null
101 100
      */
102 101
     public function setStyle(Style $style = null)
103 102
     {
@@ -201,7 +200,6 @@  discard block
 block discarded – undo
201 200
     }
202 201
 
203 202
     /**
204
-     * @param Style $style|null
205 203
      * @return Cell
206 204
      */
207 205
     public function applyStyle(Style $style = null)
Please login to merge, or discard this patch.
src/Spout/Writer/XLSX/Manager/WorksheetManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     /**
109 109
      * Checks if the sheet has been sucessfully created. Throws an exception if not.
110 110
      *
111
-     * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
111
+     * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
112 112
      * @throws IOException If the sheet data file cannot be opened for writing
113 113
      * @return void
114 114
      */
Please login to merge, or discard this patch.
src/Spout/Writer/ODS/Manager/WorksheetManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     /**
109 109
      * Checks if the sheet has been sucessfully created. Throws an exception if not.
110 110
      *
111
-     * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
111
+     * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
112 112
      * @throws IOException If the sheet data file cannot be opened for writing
113 113
      * @return void
114 114
      */
Please login to merge, or discard this patch.
src/Spout/Writer/Common/Entity/Row.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @param array $cells
53
+     * @param Cell[] $cells
54 54
      * @return $this
55 55
      */
56 56
     public function setCells(array $cells)
@@ -84,7 +84,6 @@  discard block
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @param Style $style|null
88 87
      * @return Row
89 88
      */
90 89
     public function applyStyle(Style $style = null)
Please login to merge, or discard this patch.