use class normalizer #293
mutation-tests-diff.yml
on: pull_request
Matrix: Mutation tests on diff
Annotations
1 error and 3 warnings
|
Mutation tests on diff (locked, 8.5, ubuntu-latest)
Process completed with exit code 1.
|
|
Mutation tests on diff (locked, 8.5, ubuntu-latest):
src/Metadata/AttributeMetadataFactory.php#L229
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
}
if ($normalizer instanceof TypeAwareNormalizer) {
- $normalizer->handleType($type);
+
}
return $normalizer;
|
|
Mutation tests on diff (locked, 8.5, ubuntu-latest):
src/Metadata/AttributeMetadataFactory.php#L225
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
$normalizer = $this->inferNormalizerByType($type);
if ($normalizer instanceof ObjectNormalizer) {
- return null;
+
}
if ($normalizer instanceof TypeAwareNormalizer) {
|
|
Mutation tests on diff (locked, 8.5, ubuntu-latest):
src/Metadata/AttributeMetadataFactory.php#L194
Escaped Mutant for Mutator "Coalesce":
@@ @@
return new ClassMetadata(
$parent->reflection,
- $child->normalizer ?? $parent->normalizer,
+ $parent->normalizer ?? $child->normalizer,
array_values($properties),
$child->lazy ?? $parent->lazy,
array_merge($parent->extras, $child->extras),
|