Allow php 8.3 #309
Annotations
1 error and 11 warnings
|
src/ComposerRequireChecker/JsonLoader.php#L40
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
{
$content = self::getFileContentFromPath($path);
try {
- $decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
+ $decodedData = json_decode($content, true, 511, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
|
src/ComposerRequireChecker/JsonLoader.php#L40
Escaped Mutant for Mutator "IncrementInteger":
--- Original
+++ New
@@ @@
{
$content = self::getFileContentFromPath($path);
try {
- $decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
+ $decodedData = json_decode($content, true, 513, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson($path . 'error parsing ' . ': ' . $exception->getMessage(), 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson($path . ': ' . $exception->getMessage(), 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . ': ' . $exception->getMessage(), 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . ': ' . $path . $exception->getMessage(), 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . $path . $exception->getMessage(), 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . $path . $exception->getMessage() . ': ', 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . $path . ': ', 0, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
src/ComposerRequireChecker/JsonLoader.php#L43
Escaped Mutant for Mutator "DecrementInteger":
--- Original
+++ New
@@ @@
$decodedData = json_decode($content, true, 512, JSON_THROW_ON_ERROR);
Assert::isArray($decodedData);
} catch (Throwable $exception) {
- throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), 0, $exception);
+ throw new InvalidJson('error parsing ' . $path . ': ' . $exception->getMessage(), -1, $exception);
}
/** @psalm-var ComposerData $decodedData */
return $decodedData;
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
The logs for this run have expired and are no longer available.
Loading