Completed
Pull Request — develop_3.0 (#434)
by Hura
04:17
created
Spout/Reader/XLSX/Helper/SharedStringsCaching/CachingStrategyFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
     /**
115 115
      * Returns the PHP "memory_limit" in Kilobytes
116 116
      *
117
-     * @return float
117
+     * @return integer
118 118
      */
119 119
     protected function getMemoryLimitInKB()
120 120
     {
Please login to merge, or discard this patch.
src/Spout/Writer/ODS/Helper/StyleHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     }
30 30
 
31 31
     /**
32
-     * @return string[] List of used fonts name
32
+     * @return integer[] List of used fonts name
33 33
      */
34 34
     protected function getUsedFonts()
35 35
     {
Please login to merge, or discard this patch.
src/Spout/Writer/Common/Entity/Cell.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -204,7 +204,6 @@
 block discarded – undo
204 204
     }
205 205
 
206 206
     /**
207
-     * @param Style $style|null
208 207
      * @return $this
209 208
      */
210 209
     public function applyStyle(Style $style = null)
Please login to merge, or discard this patch.
src/Spout/Writer/Common/Entity/Row.php 1 patch
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 $this
86 85
      */
87 86
     public function applyStyle(Style $style = null)
Please login to merge, or discard this patch.
src/Spout/Writer/Common/Manager/WorkbookManagerAbstract.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -235,8 +235,6 @@
 block discarded – undo
235 235
      * Adds data with the given style to the given sheet.
236 236
      *
237 237
      * @param Worksheet $worksheet Worksheet to write the row to
238
-     * @param array $dataRow Array containing data to be written. Cannot be empty.
239
-     *          Example $dataRow = ['data1', 1234, null, '', 'data5'];
240 238
      * @return void
241 239
      * @throws WriterException If unable to write data
242 240
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Box\Spout\Writer\Common\Creator\EntityFactory;
7 7
 use Box\Spout\Writer\Common\Entity\Options;
8 8
 use Box\Spout\Writer\Common\Entity\Row;
9
-use Box\Spout\Writer\Common\Entity\Style\Style;
10 9
 use Box\Spout\Writer\Common\Entity\Workbook;
11 10
 use Box\Spout\Writer\Common\Entity\Worksheet;
12 11
 use Box\Spout\Writer\Common\Helper\FileSystemWithRootFolderHelperInterface;
Please login to merge, or discard this patch.
src/Spout/Writer/ODS/Manager/WorksheetManager.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Box\Spout\Common\Helper\StringHelper;
8 8
 use Box\Spout\Writer\Common\Entity\Cell;
9 9
 use Box\Spout\Writer\Common\Entity\Row;
10
-use Box\Spout\Writer\Common\Entity\Style\Style;
11 10
 use Box\Spout\Writer\Common\Entity\Worksheet;
12 11
 use Box\Spout\Writer\Common\Manager\WorksheetManagerInterface;
13 12
 use Box\Spout\Writer\ODS\Helper\StyleHelper;
Please login to merge, or discard this patch.