Completed
Pull Request — develop (#158)
by
unknown
29:09
created
src/PhpSpreadsheet/Writer/Html.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1188,7 +1188,7 @@
 block discarded – undo
1188 1188
      * @param Worksheet $pSheet \PhpOffice\PhpSpreadsheet\Worksheet
1189 1189
      * @param array $pValues Array containing cells in a row
1190 1190
      * @param int $pRow Row number (0-based)
1191
-     * @param mixed $cellType eg: 'td'
1191
+     * @param string $cellType eg: 'td'
1192 1192
      *
1193 1193
      * @throws WriterException
1194 1194
      *
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader16.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 require_once __DIR__ . '/../../../src/Bootstrap.php';
26 26
 
27 27
 $inputFileName = './sampleData/example_1.xls';
28
-echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using IOFactory to identify the format<br />';
28
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using IOFactory to identify the format<br />';
29 29
 try {
30 30
     $spreadsheet = IOFactory::load($inputFileName);
31 31
 } catch (InvalidArgumentException $e) {
Please login to merge, or discard this patch.
docs/Examples/Reader/exampleReader02.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
 $inputFileName = './sampleData/example1.xls';
27 27
 
28
-echo 'Loading file ',pathinfo($inputFileName, PATHINFO_BASENAME),' using \PhpOffice\PhpSpreadsheet\Reader\Xls<br />';
28
+echo 'Loading file ', pathinfo($inputFileName, PATHINFO_BASENAME), ' using \PhpOffice\PhpSpreadsheet\Reader\Xls<br />';
29 29
 $reader = new Xls();
30 30
 //	$reader = new \PhpOffice\PhpSpreadsheet\Reader\Xlsx();
31 31
 //	$reader = new \PhpOffice\PhpSpreadsheet\Reader\Xml();
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/DataSeriesValues.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,11 +96,11 @@
 block discarded – undo
96 96
      *
97 97
      * @param string $dataSource
98 98
      * @param null|mixed $formatCode
99
-     * @param mixed $pointCount
99
+     * @param integer $pointCount
100 100
      * @param mixed $dataValues
101 101
      * @param null|mixed $marker
102
-     * @param mixed $dataType
103
-     * @param null|mixed $color
102
+     * @param string $dataType
103
+     * @param boolean $color
104 104
      */
105 105
     public function __construct($dataType = self::DATASERIES_TYPE_NUMBER, $dataSource = null, $formatCode = null, $pointCount = 0, $dataValues = [], $marker = null, $color = null)
106 106
     {
Please login to merge, or discard this patch.