Completed
Push — master ( dadb56...eddcd6 )
by Michał
02:10
created
math/bigint/Gmp.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
      * Constructs a new GMP BigInt instance.
110 110
      *
111
-     * @param   \GMP    $value  The GMP object holding the actual value.
111
+     * @param   resource    $value  The GMP object holding the actual value.
112 112
      */
113 113
     public function __construct(\GMP $value)
114 114
     {
Please login to merge, or discard this patch.
Arr.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
      * @param   array           $array      The array to search in.
395 395
      * @param   string|array    $key        The string delimited key or a chain (array) of nested keys pointing
396 396
      *                                      to the desired key.
397
-     * @param   mixed           $default    The default value.
397
+     * @param   null|string           $default    The default value.
398 398
      * @param   string          $delimiter  The delimiter to use when exploding the key into parts.
399 399
      * @return  mixed
400 400
      */
@@ -779,7 +779,7 @@  discard block
 block discarded – undo
779 779
      *  - @see Arr::tail()
780 780
      *
781 781
      * @param   array               $array      The array to traverse.
782
-     * @param   callable|int|bool   $callback   The truth test the value should pass or an integer denoting how many
782
+     * @param   boolean   $callback   The truth test the value should pass or an integer denoting how many
783 783
      *                                          of the initial elements of the array should be excluded. The count
784 784
      *                                          is 1-indexed, ie. if you want to exclude the first 2 elements, pass 2.
785 785
      *                                          When a falsy value is given, the method will return all but the first
Please login to merge, or discard this patch.