Completed
Push — master ( f4c102...3ac221 )
by Lars
11:33 queued 04:47
created
src/Arrayy.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
   /**
186 186
    * get the current array from the "Arrayy"-object
187 187
    *
188
-   * @return array
188
+   * @return null|callable
189 189
    */
190 190
   public function getArray()
191 191
   {
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
    *
544 544
    * @param \Closure $closure
545 545
    *
546
-   * @return mixed
546
+   * @return Arrayy
547 547
    */
548 548
   public function at(\Closure $closure)
549 549
   {
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
   /**
773 773
    * Find all items in an array that pass the truth test.
774 774
    *
775
-   * @param null $closure
775
+   * @param \Closure $closure
776 776
    *
777 777
    * @return self
778 778
    */
Please login to merge, or discard this patch.
src/CollectionMethods.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
    * @param      $collection
169 169
    * @param      $property
170 170
    * @param      $value
171
-   * @param null $comparisonOp
171
+   * @param string $comparisonOp
172 172
    *
173 173
    * @return array|object
174 174
    */
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
    * Internal mechanic of set method.
384 384
    *
385 385
    * @param $collection
386
-   * @param $key
386
+   * @param string $key
387 387
    * @param $value
388 388
    *
389 389
    * @return mixed
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
    * @param $collection
431 431
    * @param $key
432 432
    *
433
-   * @return bool
433
+   * @return false|null
434 434
    */
435 435
   protected static function internalRemove(&$collection, $key)
436 436
   {
Please login to merge, or discard this patch.