Failed Conditions
Pull Request — develop_3.0 (#434)
by Hura
02:43
created
src/Spout/Writer/ODS/Manager/WorksheetManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * Checks if the sheet has been sucessfully created. Throws an exception if not.
66 66
      *
67
-     * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
67
+     * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
68 68
      * @return void
69 69
      * @throws IOException If the sheet data file cannot be opened for writing
70 70
      */
Please login to merge, or discard this patch.
src/Spout/Writer/Common/Entity/Row.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,6 @@
 block discarded – undo
81 81
     }
82 82
 
83 83
     /**
84
-     * @param Style $style|null
85 84
      * @return Row
86 85
      */
87 86
     public function applyStyle(Style $style = null)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Box\Spout\Writer\Common\Entity\Style\Style;
6 6
 use Box\Spout\Writer\Common\Manager\RowManager;
7
-use Box\Spout\Writer\Common\Manager\Style\StyleMerger;
8 7
 
9 8
 class Row
10 9
 {
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
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * Checks if the sheet has been sucessfully created. Throws an exception if not.
66 66
      *
67
-     * @param bool|resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
67
+     * @param resource $sheetFilePointer Pointer to the sheet data file or FALSE if unable to open the file
68 68
      * @return void
69 69
      * @throws IOException If the sheet data file cannot be opened for writing
70 70
      */
Please login to merge, or discard this patch.
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.