Completed
Push — master ( 6aa252...4690a7 )
by Lars
02:53
created
src/Arrayy.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
      * property within that.
1595 1595
      *
1596 1596
      * @param string          $property
1597
-     * @param string|string[] $value
1597
+     * @param string $value
1598 1598
      * @param string          $comparisonOp
1599 1599
      *                                      <p>
1600 1600
      *                                      'eq' (equals),<br />
@@ -4604,7 +4604,7 @@  discard block
 block discarded – undo
4604 4604
     }
4605 4605
 
4606 4606
     /**
4607
-     * @param mixed      $path
4607
+     * @param string      $path
4608 4608
      * @param callable   $callable
4609 4609
      * @param array|null $currentOffset
4610 4610
      */
@@ -4699,7 +4699,7 @@  discard block
 block discarded – undo
4699 4699
     }
4700 4700
 
4701 4701
     /**
4702
-     * @param mixed $glue
4702
+     * @param string $glue
4703 4703
      * @param mixed $pieces
4704 4704
      * @param bool  $useKeys
4705 4705
      *
Please login to merge, or discard this patch.
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1003,11 +1003,11 @@  discard block
 block discarded – undo
1003 1003
             \array_intersect($needles, $this->keys()->getArray()),
1004 1004
             \COUNT_NORMAL
1005 1005
         )
1006
-               ===
1007
-               \count(
1008
-                   $needles,
1009
-                   \COUNT_NORMAL
1010
-               );
1006
+                ===
1007
+                \count(
1008
+                    $needles,
1009
+                    \COUNT_NORMAL
1010
+                );
1011 1011
     }
1012 1012
 
1013 1013
     /**
@@ -1062,8 +1062,8 @@  discard block
 block discarded – undo
1062 1062
     public function containsValues(array $needles): bool
1063 1063
     {
1064 1064
         return \count(\array_intersect($needles, $this->getArray()), \COUNT_NORMAL)
1065
-               ===
1066
-               \count($needles, \COUNT_NORMAL);
1065
+                ===
1066
+                \count($needles, \COUNT_NORMAL);
1067 1067
     }
1068 1068
 
1069 1069
     /**
@@ -2516,15 +2516,15 @@  discard block
 block discarded – undo
2516 2516
 
2517 2517
         if ($recursive === true) {
2518 2518
             return $this->array_keys_recursive($this->getArray())
2519
-                   ===
2520
-                   \range(0, \count($this->getArray(), \COUNT_RECURSIVE) - 1);
2519
+                    ===
2520
+                    \range(0, \count($this->getArray(), \COUNT_RECURSIVE) - 1);
2521 2521
         }
2522 2522
 
2523 2523
         // non recursive
2524 2524
 
2525 2525
         return \array_keys($this->getArray())
2526
-               ===
2527
-               \range(0, \count($this->getArray(), \COUNT_NORMAL) - 1);
2526
+                ===
2527
+                \range(0, \count($this->getArray(), \COUNT_NORMAL) - 1);
2528 2528
     }
2529 2529
 
2530 2530
     /**
Please login to merge, or discard this patch.