test #72
Annotations
2 warnings
src/DependencyInjection/CompilerPass/SorterConfigPass.php#L32
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
$container->getParameterBag()->remove('budgegeria_intl.sorter');
foreach ($sorterConfigs as $serviceSuffix => $sorterConfig) {
/** @phpstan-var string $locale */
- $locale = $sorterConfig['locale'] ?? $defaultLocale;
+ $locale = $defaultLocale ?? $sorterConfig['locale'];
unset($sorterConfig['locale']);
$factory = $container->getDefinition('budgegeria_intl_bundle.sorter.factory.standard');
$builderDefinition = new Definition(Builder::class, [$locale, $factory]);
|
src/DependencyInjection/Configuration.php#L48
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$sorterChildren->scalarNode($sorterConfigNames)->end();
}
$sorterChildren->scalarNode('locale')->end();
- $sorterChildren->end()->end()->end()->end();
+
}
}
|
The logs for this run have expired and are no longer available.
Loading