@@ -1002,12 +1002,12 @@ discard block |
||
1002 | 1002 | return \count( |
1003 | 1003 | \array_intersect($needles, $this->keys()->getArray()), |
1004 | 1004 | \COUNT_NORMAL |
1005 | - ) |
|
1006 | - === |
|
1007 | - \count( |
|
1008 | - $needles, |
|
1009 | - \COUNT_NORMAL |
|
1010 | - ); |
|
1005 | + ) |
|
1006 | + === |
|
1007 | + \count( |
|
1008 | + $needles, |
|
1009 | + \COUNT_NORMAL |
|
1010 | + ); |
|
1011 | 1011 | } |
1012 | 1012 | |
1013 | 1013 | /** |
@@ -1062,8 +1062,8 @@ discard block |
||
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 | /** |
@@ -2364,15 +2364,15 @@ discard block |
||
2364 | 2364 | |
2365 | 2365 | if ($recursive === true) { |
2366 | 2366 | return $this->array_keys_recursive($this->getArray()) |
2367 | - === |
|
2368 | - \range(0, \count($this->getArray(), \COUNT_RECURSIVE) - 1); |
|
2367 | + === |
|
2368 | + \range(0, \count($this->getArray(), \COUNT_RECURSIVE) - 1); |
|
2369 | 2369 | } |
2370 | 2370 | |
2371 | 2371 | // non recursive |
2372 | 2372 | |
2373 | 2373 | return \array_keys($this->getArray()) |
2374 | - === |
|
2375 | - \range(0, \count($this->getArray(), \COUNT_NORMAL) - 1); |
|
2374 | + === |
|
2375 | + \range(0, \count($this->getArray(), \COUNT_NORMAL) - 1); |
|
2376 | 2376 | } |
2377 | 2377 | |
2378 | 2378 | /** |