Update rector/rector requirement from ^0.17 to ^0.18 #510
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
10 warnings
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L678
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
/** @var mixed $element */
foreach ($array as $element) {
if (!is_array($element) && !is_object($element)) {
- throw new InvalidArgumentException('index() can not get value from ' . gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
+ throw new InvalidArgumentException(gettype($element) . 'index() can not get value from ' . '. The $array should be either multidimensional array or an array of objects.');
}
$lastArray =& $result;
foreach ($groups as $group) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L678
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
/** @var mixed $element */
foreach ($array as $element) {
if (!is_array($element) && !is_object($element)) {
- throw new InvalidArgumentException('index() can not get value from ' . gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
+ throw new InvalidArgumentException(gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
}
$lastArray =& $result;
foreach ($groups as $group) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L678
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
/** @var mixed $element */
foreach ($array as $element) {
if (!is_array($element) && !is_object($element)) {
- throw new InvalidArgumentException('index() can not get value from ' . gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
+ throw new InvalidArgumentException('index() can not get value from ' . '. The $array should be either multidimensional array or an array of objects.');
}
$lastArray =& $result;
foreach ($groups as $group) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L678
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
/** @var mixed $element */
foreach ($array as $element) {
if (!is_array($element) && !is_object($element)) {
- throw new InvalidArgumentException('index() can not get value from ' . gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
+ throw new InvalidArgumentException('index() can not get value from ' . '. The $array should be either multidimensional array or an array of objects.' . gettype($element));
}
$lastArray =& $result;
foreach ($groups as $group) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L678
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
/** @var mixed $element */
foreach ($array as $element) {
if (!is_array($element) && !is_object($element)) {
- throw new InvalidArgumentException('index() can not get value from ' . gettype($element) . '. The $array should be either multidimensional array or an array of objects.');
+ throw new InvalidArgumentException('index() can not get value from ' . gettype($element));
}
$lastArray =& $result;
foreach ($groups as $group) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L867
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
*
* @return bool Whether the array contains the specified key.
*/
- public static function keyExists(array $array, array|float|int|string $key, bool $caseSensitive = true) : bool
+ public static function keyExists(array $array, array|float|int|string $key, bool $caseSensitive = false) : bool
{
if (is_array($key)) {
if (count($key) === 1) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L941
Escaped Mutant for Mutator "TrueValue":
--- Original
+++ New
@@ @@
*
* @psalm-param ArrayPath $path
*/
- public static function pathExists(array $array, array|float|int|string $path, bool $caseSensitive = true, string $delimiter = '.') : bool
+ public static function pathExists(array $array, array|float|int|string $path, bool $caseSensitive = false, string $delimiter = '.') : bool
{
return self::keyExists($array, self::parseMixedPath($path, $delimiter), $caseSensitive);
}
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L1256
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$numNestedKeys = count($keys) - 1;
foreach ($keys as $i => $key) {
if (!is_array($excludeNode) || !array_key_exists($key, $excludeNode)) {
- continue 2;
+ continue 1;
// Jump to next filter.
}
if ($i < $numNestedKeys) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L1256
Escaped Mutant for Mutator "Continue_":
--- Original
+++ New
@@ @@
$numNestedKeys = count($keys) - 1;
foreach ($keys as $i => $key) {
if (!is_array($excludeNode) || !array_key_exists($key, $excludeNode)) {
- continue 2;
+ break;
// Jump to next filter.
}
if ($i < $numNestedKeys) {
|
mutation / PHP 8.1-ubuntu-latest:
src/ArrayHelper.php#L1264
Escaped Mutant for Mutator "Break_":
--- Original
+++ New
@@ @@
$excludeNode =& $excludeNode[$key];
} else {
unset($excludeNode[$key]);
- break;
+ continue;
}
}
}
|