Completed
Push — develop ( 1cdc85...031af1 )
by Adrien
21:20
created
src/PhpSpreadsheet/Calculation/MathTrig.php 1 patch
Doc Comments   +11 added lines, -21 removed lines patch added patch discarded remove patch
@@ -52,6 +52,10 @@  discard block
 block discarded – undo
52 52
         return [(int) $value];
53 53
     }
54 54
 
55
+    /**
56
+     * @param integer $num
57
+     * @param integer $n
58
+     */
55 59
     private static function romanCut($num, $n)
56 60
     {
57 61
         return ($num - ($num % $n)) / $n;
@@ -343,7 +347,6 @@  discard block
 block discarded – undo
343 347
      *
344 348
      * @category Mathematical and Trigonometric Functions
345 349
      *
346
-     * @param    mixed    $arg,...        Data values
347 350
      *
348 351
      * @return    int                    Greatest Common Divisor
349 352
      */
@@ -452,7 +455,6 @@  discard block
 block discarded – undo
452 455
      *
453 456
      * @category Mathematical and Trigonometric Functions
454 457
      *
455
-     * @param    mixed    $arg,...        Data values
456 458
      *
457 459
      * @return    int        Lowest Common Multiplier
458 460
      */
@@ -504,7 +506,7 @@  discard block
 block discarded – undo
504 506
      * @category Mathematical and Trigonometric Functions
505 507
      *
506 508
      * @param    float    $number        The positive real number for which you want the logarithm
507
-     * @param    float    $base        The base of the logarithm. If base is omitted, it is assumed to be 10.
509
+     * @param    integer    $base        The base of the logarithm. If base is omitted, it is assumed to be 10.
508 510
      *
509 511
      * @return    float
510 512
      */
@@ -822,8 +824,8 @@  discard block
 block discarded – undo
822 824
      *
823 825
      * Computes x raised to the power y.
824 826
      *
825
-     * @param    float        $x
826
-     * @param    float        $y
827
+     * @param    integer        $x
828
+     * @param    integer        $y
827 829
      *
828 830
      * @return    float
829 831
      */
@@ -855,7 +857,6 @@  discard block
 block discarded – undo
855 857
      *
856 858
      * @category Mathematical and Trigonometric Functions
857 859
      *
858
-     * @param    mixed        $arg,...        Data values
859 860
      *
860 861
      * @return    float
861 862
      */
@@ -895,9 +896,8 @@  discard block
 block discarded – undo
895 896
      *
896 897
      * @category Mathematical and Trigonometric Functions
897 898
      *
898
-     * @param    mixed        $arg,...        Data values
899 899
      *
900
-     * @return    float
900
+     * @return    integer
901 901
      */
902 902
     public static function QUOTIENT()
903 903
     {
@@ -1035,9 +1035,6 @@  discard block
 block discarded – undo
1035 1035
      *
1036 1036
      * Returns the sum of a power series
1037 1037
      *
1038
-     * @param    float            $x    Input value to the power series
1039
-     * @param    float            $n    Initial power to which you want to raise $x
1040
-     * @param    float            $m    Step by which to increase $n for each term in the series
1041 1038
      * @param    array of mixed        Data Series
1042 1039
      *
1043 1040
      * @return    float
@@ -1181,7 +1178,6 @@  discard block
 block discarded – undo
1181 1178
      *
1182 1179
      * @category Mathematical and Trigonometric Functions
1183 1180
      *
1184
-     * @param    mixed        $arg,...        Data values
1185 1181
      *
1186 1182
      * @return    float
1187 1183
      */
@@ -1210,12 +1206,11 @@  discard block
 block discarded – undo
1210 1206
      *
1211 1207
      * @category Mathematical and Trigonometric Functions
1212 1208
      *
1213
-     * @param    mixed        $arg,...        Data values
1214 1209
      * @param    string        $condition        the criteria that defines which cells will be summed
1215 1210
      * @param mixed $aArgs
1216 1211
      * @param mixed $sumArgs
1217 1212
      *
1218
-     * @return    float
1213
+     * @return    integer
1219 1214
      */
1220 1215
     public static function SUMIF($aArgs, $condition, $sumArgs = [])
1221 1216
     {
@@ -1254,10 +1249,7 @@  discard block
 block discarded – undo
1254 1249
      *
1255 1250
      *    @category Mathematical and Trigonometric Functions
1256 1251
      *
1257
-     *    @param    mixed        $arg,...        Data values
1258
-     *    @param    string        $condition        the criteria that defines which cells will be summed
1259
-     *
1260
-     *    @return    float
1252
+     * @return integer
1261 1253
      */
1262 1254
     public static function SUMIFS()
1263 1255
     {
@@ -1302,7 +1294,6 @@  discard block
 block discarded – undo
1302 1294
      *
1303 1295
      * @category Mathematical and Trigonometric Functions
1304 1296
      *
1305
-     * @param    mixed        $arg,...        Data values
1306 1297
      *
1307 1298
      * @return    float
1308 1299
      */
@@ -1347,7 +1338,6 @@  discard block
 block discarded – undo
1347 1338
      *
1348 1339
      * @category Mathematical and Trigonometric Functions
1349 1340
      *
1350
-     * @param    mixed        $arg,...        Data values
1351 1341
      *
1352 1342
      * @return    float
1353 1343
      */
@@ -1446,7 +1436,7 @@  discard block
 block discarded – undo
1446 1436
      *
1447 1437
      * Truncates value to the number of fractional digits by number_digits.
1448 1438
      *
1449
-     * @param    float        $value
1439
+     * @param    integer        $value
1450 1440
      * @param    int            $digits
1451 1441
      *
1452 1442
      * @return    float        Truncated value
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Calculation/Statistical.php 1 patch
Doc Comments   +9 added lines, -46 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      * @param mixed $p
134 134
      * @param mixed $q
135 135
      *
136
-     * @return 0 if p<=0, q<=0 or p+q>2.55E305 to avoid errors and over/underflow
136
+     * @return double if p<=0, q<=0 or p+q>2.55E305 to avoid errors and over/underflow
137 137
      *
138 138
      * @author Jaco van Kooten
139 139
      */
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
      * @author Jaco van Kooten
160 160
      *
161 161
      * @param mixed $x
162
-     * @param mixed $p
163
-     * @param mixed $q
162
+     * @param double $p
163
+     * @param double $q
164 164
      */
165 165
     private static function betaFraction($x, $p, $q)
166 166
     {
@@ -722,7 +722,6 @@  discard block
 block discarded – undo
722 722
      *
723 723
      * @category Statistical Functions
724 724
      *
725
-     * @param    mixed        $arg,...        Data values
726 725
      *
727 726
      * @return    float
728 727
      */
@@ -773,7 +772,6 @@  discard block
 block discarded – undo
773 772
      *
774 773
      * @category Statistical Functions
775 774
      *
776
-     * @param    mixed        $arg,...        Data values
777 775
      *
778 776
      * @return    float
779 777
      */
@@ -816,7 +814,6 @@  discard block
 block discarded – undo
816 814
      *
817 815
      * @category Statistical Functions
818 816
      *
819
-     * @param    mixed        $arg,...        Data values
820 817
      *
821 818
      * @return    float
822 819
      */
@@ -863,7 +860,6 @@  discard block
 block discarded – undo
863 860
      *
864 861
      * @category Mathematical and Trigonometric Functions
865 862
      *
866
-     * @param    mixed        $arg,...        Data values
867 863
      * @param    string        $condition        the criteria that defines which cells will be checked
868 864
      * @param    mixed[]        $averageArgs    Data values
869 865
      * @param mixed $aArgs
@@ -910,8 +906,8 @@  discard block
 block discarded – undo
910 906
      * @param    float        $value            Value at which you want to evaluate the distribution
911 907
      * @param    float        $alpha            Parameter to the distribution
912 908
      * @param    float        $beta            Parameter to the distribution
913
-     * @param mixed $rMin
914
-     * @param mixed $rMax
909
+     * @param integer $rMin
910
+     * @param integer $rMax
915 911
      *
916 912
      * @return    float
917 913
      */
@@ -949,8 +945,8 @@  discard block
 block discarded – undo
949 945
      * @param    float        $probability    Probability at which you want to evaluate the distribution
950 946
      * @param    float        $alpha            Parameter to the distribution
951 947
      * @param    float        $beta            Parameter to the distribution
952
-     * @param    float        $rMin            Minimum value
953
-     * @param    float        $rMax            Maximum value
948
+     * @param    integer        $rMin            Minimum value
949
+     * @param    integer        $rMax            Maximum value
954 950
      *
955 951
      * @return    float
956 952
      */
@@ -1210,7 +1206,6 @@  discard block
 block discarded – undo
1210 1206
      *
1211 1207
      * @category Statistical Functions
1212 1208
      *
1213
-     * @param    mixed        $arg,...        Data values
1214 1209
      *
1215 1210
      * @return    int
1216 1211
      */
@@ -1244,7 +1239,6 @@  discard block
 block discarded – undo
1244 1239
      *
1245 1240
      * @category Statistical Functions
1246 1241
      *
1247
-     * @param    mixed        $arg,...        Data values
1248 1242
      *
1249 1243
      * @return    int
1250 1244
      */
@@ -1274,7 +1268,6 @@  discard block
 block discarded – undo
1274 1268
      *
1275 1269
      * @category Statistical Functions
1276 1270
      *
1277
-     * @param    mixed        $arg,...        Data values
1278 1271
      *
1279 1272
      * @return    int
1280 1273
      */
@@ -1304,7 +1297,6 @@  discard block
 block discarded – undo
1304 1297
      *
1305 1298
      * @category Statistical Functions
1306 1299
      *
1307
-     * @param    mixed        $arg,...        Data values
1308 1300
      * @param    string        $condition        the criteria that defines which cells will be counted
1309 1301
      * @param mixed $aArgs
1310 1302
      *
@@ -1495,7 +1487,6 @@  discard block
 block discarded – undo
1495 1487
      *
1496 1488
      * @category Statistical Functions
1497 1489
      *
1498
-     * @param    mixed        $arg,...        Data values
1499 1490
      *
1500 1491
      * @return    float
1501 1492
      */
@@ -1789,7 +1780,6 @@  discard block
 block discarded – undo
1789 1780
      *
1790 1781
      * @category Statistical Functions
1791 1782
      *
1792
-     * @param    mixed        $arg,...        Data values
1793 1783
      *
1794 1784
      * @return    float
1795 1785
      */
@@ -1855,7 +1845,6 @@  discard block
 block discarded – undo
1855 1845
      *
1856 1846
      * @category Statistical Functions
1857 1847
      *
1858
-     * @param    mixed        $arg,...        Data values
1859 1848
      *
1860 1849
      * @return    float
1861 1850
      */
@@ -2016,8 +2005,6 @@  discard block
 block discarded – undo
2016 2005
      *
2017 2006
      * @category Statistical Functions
2018 2007
      *
2019
-     * @param    mixed        $arg,...        Data values
2020
-     * @param    int            $entry            Position (ordered from the largest) in the array or range of data to return
2021 2008
      *
2022 2009
      * @return    float
2023 2010
      */
@@ -2253,7 +2240,6 @@  discard block
 block discarded – undo
2253 2240
      *
2254 2241
      * @category Statistical Functions
2255 2242
      *
2256
-     * @param    mixed        $arg,...        Data values
2257 2243
      *
2258 2244
      * @return    float
2259 2245
      */
@@ -2289,7 +2275,6 @@  discard block
 block discarded – undo
2289 2275
      *
2290 2276
      * @category Statistical Functions
2291 2277
      *
2292
-     * @param    mixed        $arg,...        Data values
2293 2278
      *
2294 2279
      * @return    float
2295 2280
      */
@@ -2330,7 +2315,6 @@  discard block
 block discarded – undo
2330 2315
      *
2331 2316
      * @category Mathematical and Trigonometric Functions
2332 2317
      *
2333
-     * @param    mixed        $arg,...        Data values
2334 2318
      * @param    string        $condition        the criteria that defines which cells will be checked
2335 2319
      * @param mixed $aArgs
2336 2320
      * @param mixed $sumArgs
@@ -2373,7 +2357,6 @@  discard block
 block discarded – undo
2373 2357
      *
2374 2358
      * @category Statistical Functions
2375 2359
      *
2376
-     * @param    mixed        $arg,...        Data values
2377 2360
      *
2378 2361
      * @return    float
2379 2362
      */
@@ -2417,7 +2400,6 @@  discard block
 block discarded – undo
2417 2400
      *
2418 2401
      * @category Statistical Functions
2419 2402
      *
2420
-     * @param    mixed        $arg,...        Data values
2421 2403
      *
2422 2404
      * @return    float
2423 2405
      */
@@ -2453,7 +2435,6 @@  discard block
 block discarded – undo
2453 2435
      *
2454 2436
      * @category Statistical Functions
2455 2437
      *
2456
-     * @param    mixed        $arg,...        Data values
2457 2438
      *
2458 2439
      * @return    float
2459 2440
      */
@@ -2494,7 +2475,6 @@  discard block
 block discarded – undo
2494 2475
      *
2495 2476
      * @category Mathematical and Trigonometric Functions
2496 2477
      *
2497
-     * @param    mixed        $arg,...        Data values
2498 2478
      * @param    string        $condition        the criteria that defines which cells will be checked
2499 2479
      * @param mixed $aArgs
2500 2480
      * @param mixed $sumArgs
@@ -2574,7 +2554,6 @@  discard block
 block discarded – undo
2574 2554
      *
2575 2555
      * @category Statistical Functions
2576 2556
      *
2577
-     * @param    mixed        $arg,...        Data values
2578 2557
      *
2579 2558
      * @return    float
2580 2559
      */
@@ -2748,8 +2727,6 @@  discard block
 block discarded – undo
2748 2727
      *
2749 2728
      * @category Statistical Functions
2750 2729
      *
2751
-     * @param    mixed        $arg,...        Data values
2752
-     * @param    float        $entry            Percentile value in the range 0..1, inclusive.
2753 2730
      *
2754 2731
      * @return    float
2755 2732
      */
@@ -2800,7 +2777,7 @@  discard block
 block discarded – undo
2800 2777
      * @param    number                the number of significant digits for the returned percentage value
2801 2778
      * @param mixed $valueSet
2802 2779
      * @param mixed $value
2803
-     * @param mixed $significance
2780
+     * @param integer $significance
2804 2781
      *
2805 2782
      * @return    float
2806 2783
      */
@@ -2920,8 +2897,6 @@  discard block
 block discarded – undo
2920 2897
      *
2921 2898
      * @category Statistical Functions
2922 2899
      *
2923
-     * @param    mixed        $arg,...        Data values
2924
-     * @param    int            $entry            Quartile value in the range 1..3, inclusive.
2925 2900
      *
2926 2901
      * @return    float
2927 2902
      */
@@ -2954,7 +2929,7 @@  discard block
 block discarded – undo
2954 2929
      * @param    mixed                Order to sort the values in the value set
2955 2930
      * @param mixed $value
2956 2931
      * @param mixed $valueSet
2957
-     * @param mixed $order
2932
+     * @param integer $order
2958 2933
      *
2959 2934
      * @return    float
2960 2935
      */
@@ -3095,8 +3070,6 @@  discard block
 block discarded – undo
3095 3070
      *
3096 3071
      * @category Statistical Functions
3097 3072
      *
3098
-     * @param    mixed        $arg,...        Data values
3099
-     * @param    int            $entry            Position (ordered from the smallest) in the array or range of data to return
3100 3073
      *
3101 3074
      * @return    float
3102 3075
      */
@@ -3167,7 +3140,6 @@  discard block
 block discarded – undo
3167 3140
      *
3168 3141
      * @category Statistical Functions
3169 3142
      *
3170
-     * @param    mixed        $arg,...        Data values
3171 3143
      *
3172 3144
      * @return    float
3173 3145
      */
@@ -3216,7 +3188,6 @@  discard block
 block discarded – undo
3216 3188
      *
3217 3189
      * @category Statistical Functions
3218 3190
      *
3219
-     * @param    mixed        $arg,...        Data values
3220 3191
      *
3221 3192
      * @return    float
3222 3193
      */
@@ -3268,7 +3239,6 @@  discard block
 block discarded – undo
3268 3239
      *
3269 3240
      * @category Statistical Functions
3270 3241
      *
3271
-     * @param    mixed        $arg,...        Data values
3272 3242
      *
3273 3243
      * @return    float
3274 3244
      */
@@ -3315,7 +3285,6 @@  discard block
 block discarded – undo
3315 3285
      *
3316 3286
      * @category Statistical Functions
3317 3287
      *
3318
-     * @param    mixed        $arg,...        Data values
3319 3288
      *
3320 3289
      * @return    float
3321 3290
      */
@@ -3559,8 +3528,6 @@  discard block
 block discarded – undo
3559 3528
      *
3560 3529
      * @category Statistical Functions
3561 3530
      *
3562
-     * @param    mixed        $arg,...        Data values
3563
-     * @param    float        $discard        Percentage to discard
3564 3531
      *
3565 3532
      * @return    float
3566 3533
      */
@@ -3605,7 +3572,6 @@  discard block
 block discarded – undo
3605 3572
      *
3606 3573
      * @category Statistical Functions
3607 3574
      *
3608
-     * @param    mixed        $arg,...        Data values
3609 3575
      *
3610 3576
      * @return    float
3611 3577
      */
@@ -3649,7 +3615,6 @@  discard block
 block discarded – undo
3649 3615
      *
3650 3616
      * @category Statistical Functions
3651 3617
      *
3652
-     * @param    mixed        $arg,...        Data values
3653 3618
      *
3654 3619
      * @return    float
3655 3620
      */
@@ -3702,7 +3667,6 @@  discard block
 block discarded – undo
3702 3667
      *
3703 3668
      * @category Statistical Functions
3704 3669
      *
3705
-     * @param    mixed        $arg,...        Data values
3706 3670
      *
3707 3671
      * @return    float
3708 3672
      */
@@ -3747,7 +3711,6 @@  discard block
 block discarded – undo
3747 3711
      *
3748 3712
      * @category Statistical Functions
3749 3713
      *
3750
-     * @param    mixed        $arg,...        Data values
3751 3714
      *
3752 3715
      * @return    float
3753 3716
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/DataSeriesValues.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,9 +80,9 @@
 block discarded – undo
80 80
      * Create a new DataSeriesValues object.
81 81
      *
82 82
      * @param string $dataSource
83
-     * @param mixed $dataType
83
+     * @param string $dataType
84 84
      * @param null|mixed $formatCode
85
-     * @param mixed $pointCount
85
+     * @param integer $pointCount
86 86
      * @param mixed $dataValues
87 87
      * @param null|mixed $marker
88 88
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Chart/PlotArea.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
      * Get Number of Plot Groups.
66 66
      *
67
-     * @return array of DataSeries
67
+     * @return integer of DataSeries
68 68
      */
69 69
     public function getPlotGroupCount()
70 70
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Reader/Xlsx/Theme.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * Create a new Theme.
59 59
      *
60
-     * @param mixed $themeName
61
-     * @param mixed $colourSchemeName
60
+     * @param string $themeName
61
+     * @param string $colourSchemeName
62 62
      * @param mixed $colourMap
63 63
      */
64 64
     public function __construct($themeName, $colourSchemeName, $colourMap)
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * Get colour Map Value by Position.
94 94
      *
95
-     * @param mixed $index
95
+     * @param integer $index
96 96
      *
97 97
      * @return string
98 98
      */
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
     /**
242 242
      *    Solve A*X = B.
243 243
      *
244
-     *    @param  $B  a Matrix with as many rows as A and any number of columns
244
+     *    @param  Matrix $B  a Matrix with as many rows as A and any number of columns
245 245
      *
246 246
      *    @throws \PhpOffice\PhpSpreadsheet\Calculation\Exception  illegalArgumentException Matrix row dimensions must agree
247 247
      *    @throws \PhpOffice\PhpSpreadsheet\Calculation\Exception  runtimeException  Matrix is singular
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/OLE/PPS/Root.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * If a resource pointer to a stream created by fopen() is passed
57 57
      * it will be used, but you have to close such stream by yourself.
58 58
      *
59
-     * @param string|resource $filename the name of the file or stream where to save the OLE container
59
+     * @param string|null $filename the name of the file or stream where to save the OLE container
60 60
      *
61 61
      * @throws \PhpOffice\PhpSpreadsheet\Writer\Exception
62 62
      *
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @param array $raList Reference to an array of PPS's
123 123
      *
124
-     * @return float[] The array of numbers
124
+     * @return double[] The array of numbers
125 125
      */
126 126
     public function _calcSize(&$raList)
127 127
     {
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Shared/PCLZip/PclZip.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -1367,6 +1367,10 @@  discard block
 block discarded – undo
1367 1367
     //     1 on success.
1368 1368
     //     0 on failure.
1369 1369
     // --------------------------------------------------------------------------------
1370
+
1371
+    /**
1372
+     * @param integer $p_size
1373
+     */
1370 1374
     public function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options = false)
1371 1375
     {
1372 1376
         $v_result = 1;
@@ -2218,6 +2222,10 @@  discard block
 block discarded – undo
2218 2222
     // Description :
2219 2223
     // Parameters :
2220 2224
     // --------------------------------------------------------------------------------
2225
+
2226
+    /**
2227
+     * @param string $p_mode
2228
+     */
2221 2229
     public function privOpenFd($p_mode)
2222 2230
     {
2223 2231
         $v_result = 1;
@@ -3831,6 +3839,10 @@  discard block
 block discarded – undo
3831 3839
     // Parameters :
3832 3840
     // Return Values :
3833 3841
     // --------------------------------------------------------------------------------
3842
+
3843
+    /**
3844
+     * @param string $p_string
3845
+     */
3834 3846
     public function privExtractFileAsString(&$p_entry, &$p_string, &$p_options)
3835 3847
     {
3836 3848
         $v_result = 1;
Please login to merge, or discard this patch.
src/PhpSpreadsheet/Worksheet.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
      *
591 591
      * @throws Exception
592 592
      *
593
-     * @return false|Chart
593
+     * @return null|Chart
594 594
      */
595 595
     public function getChartByIndex($index = null)
596 596
     {
@@ -1120,7 +1120,7 @@  discard block
 block discarded – undo
1120 1120
      * Set a cell value.
1121 1121
      *
1122 1122
      * @param string $pCoordinate Coordinate of the cell
1123
-     * @param mixed $pValue Value of the cell
1123
+     * @param integer $pValue Value of the cell
1124 1124
      * @param bool $returnCell   Return the worksheet (false, default) or the cell (true)
1125 1125
      *
1126 1126
      * @return Worksheet|Cell    Depending on the last parameter being specified
@@ -1237,8 +1237,8 @@  discard block
 block discarded – undo
1237 1237
     /**
1238 1238
      * Get cell at a specific coordinate by using numeric cell coordinates.
1239 1239
      *
1240
-     * @param  string $pColumn Numeric column coordinate of the cell
1241
-     * @param string $pRow Numeric row coordinate of the cell
1240
+     * @param  integer $pColumn Numeric column coordinate of the cell
1241
+     * @param integer $pRow Numeric row coordinate of the cell
1242 1242
      * @param bool $createIfNotExists  Flag indicating whether a new cell should be created if it doesn't
1243 1243
      *                                       already exist, or a null should be returned instead
1244 1244
      *
@@ -1348,8 +1348,8 @@  discard block
 block discarded – undo
1348 1348
     /**
1349 1349
      * Cell at a specific coordinate by using numeric cell coordinates exists?
1350 1350
      *
1351
-     * @param string $pColumn Numeric column coordinate of the cell
1352
-     * @param string $pRow Numeric row coordinate of the cell
1351
+     * @param integer $pColumn Numeric column coordinate of the cell
1352
+     * @param integer $pRow Numeric row coordinate of the cell
1353 1353
      *
1354 1354
      * @return bool
1355 1355
      */
@@ -1362,7 +1362,7 @@  discard block
 block discarded – undo
1362 1362
      * Get row dimension at a specific row.
1363 1363
      *
1364 1364
      * @param int $pRow Numeric index of the row
1365
-     * @param mixed $create
1365
+     * @param boolean $create
1366 1366
      *
1367 1367
      * @return Worksheet\RowDimension
1368 1368
      */
@@ -1388,7 +1388,7 @@  discard block
 block discarded – undo
1388 1388
      * Get column dimension at a specific column.
1389 1389
      *
1390 1390
      * @param string $pColumn String index of the column
1391
-     * @param mixed $create
1391
+     * @param boolean $create
1392 1392
      *
1393 1393
      * @return Worksheet\ColumnDimension
1394 1394
      */
@@ -1934,7 +1934,7 @@  discard block
 block discarded – undo
1934 1934
     /**
1935 1935
      *    Set AutoFilter.
1936 1936
      *
1937
-     *    @param    Worksheet\AutoFilter|string   $pValue
1937
+     *    @param    string   $pValue
1938 1938
      *            A simple string containing a Cell range like 'A1:E10' is permitted for backward compatibility
1939 1939
      *
1940 1940
      *    @throws Exception
@@ -2994,7 +2994,7 @@  discard block
 block discarded – undo
2994 2994
      *
2995 2995
      * @throws Exception
2996 2996
      *
2997
-     * @return objWorksheet
2997
+     * @return Worksheet
2998 2998
      */
2999 2999
     public function setCodeName($pValue = null)
3000 3000
     {
Please login to merge, or discard this patch.