CI #187
Annotations
4 warnings
src/Bridge/SymfonyYaml/YamlFormatEncoder.php#L65
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
*/
public function encode($content): string
{
- return Yaml::dump($content, 512, 2, Yaml::DUMP_OBJECT_AS_MAP | Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE | Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
+ return Yaml::dump($content, 511, 2, Yaml::DUMP_OBJECT_AS_MAP | Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE | Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
}
private function replaceIrrelevantExceptionMessageParts(EncodingFailure $e): void
{
|
src/Bridge/SymfonyYaml/YamlFormatEncoder.php#L65
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
*/
public function encode($content): string
{
- return Yaml::dump($content, 512, 2, Yaml::DUMP_OBJECT_AS_MAP | Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE | Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
+ return Yaml::dump($content, 513, 2, Yaml::DUMP_OBJECT_AS_MAP | Yaml::DUMP_EMPTY_ARRAY_AS_SEQUENCE | Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK);
}
private function replaceIrrelevantExceptionMessageParts(EncodingFailure $e): void
{
|
src/JsonFormatEncoder.php#L51
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
public function decode(string $content)
{
try {
- return json_decode($content, false, 512, JSON_THROW_ON_ERROR | JSON_BIGINT_AS_STRING);
+ return json_decode($content, false, 511, JSON_THROW_ON_ERROR | JSON_BIGINT_AS_STRING);
} catch (JsonException $exception) {
throw EncodingFailure::fromPrevious($exception);
}
|
src/JsonFormatEncoder.php#L51
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
public function decode(string $content)
{
try {
- return json_decode($content, false, 512, JSON_THROW_ON_ERROR | JSON_BIGINT_AS_STRING);
+ return json_decode($content, false, 513, JSON_THROW_ON_ERROR | JSON_BIGINT_AS_STRING);
} catch (JsonException $exception) {
throw EncodingFailure::fromPrevious($exception);
}
|
This job succeeded
Loading