Lock file maintenance #239
Annotations
10 warnings
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/Configuration.php#L220
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
'The "%node%" option is deprecated and will be removed in 4.0. Use "patchlevel_event_sourcing.subscription.retry_strategies" instead.'
)
->children()
- ->integerNode('base_delay')->defaultValue(5)->end()
+ ->integerNode('base_delay')->defaultValue(6)->end()
->integerNode('delay_factor')->defaultValue(2)->end()
->integerNode('max_attempts')->defaultValue(5)->end()
->end()
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/Configuration.php#L220
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
'The "%node%" option is deprecated and will be removed in 4.0. Use "patchlevel_event_sourcing.subscription.retry_strategies" instead.'
)
->children()
- ->integerNode('base_delay')->defaultValue(5)->end()
+ ->integerNode('base_delay')->defaultValue(4)->end()
->integerNode('delay_factor')->defaultValue(2)->end()
->integerNode('max_attempts')->defaultValue(5)->end()
->end()
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/Configuration.php#L200
Escaped Mutant for Mutator "ArrayItemRemoval":
@@ @@
->addDefaultsIfNotSet()
->children()
->enumNode('type')
- ->values(['dbal', 'in_memory', 'static_in_memory', 'custom'])
+ ->values(['in_memory', 'static_in_memory', 'custom'])
->defaultValue('dbal')
->end()
->scalarNode('service')->defaultNull()->end()
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/Configuration.php#L121
Escaped Mutant for Mutator "ArrayItemRemoval":
@@ @@
->addDefaultsIfNotSet()
->children()
->enumNode('type')
- ->values(['dbal_aggregate', 'dbal_stream', 'in_memory', 'custom'])
+ ->values(['dbal_stream', 'in_memory', 'custom'])
->end()
->scalarNode('service')->defaultNull()->end()
->arrayNode('options')->variablePrototype()->end()->end()
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/Configuration.php#L109
Escaped Mutant for Mutator "ArrayItemRemoval":
@@ @@
->addDefaultsIfNotSet()
->children()
->enumNode('type')
- ->values(['dbal_aggregate', 'dbal_stream', 'in_memory', 'custom'])
+ ->values(['dbal_stream', 'in_memory', 'custom'])
->defaultValue('dbal_aggregate')
->end()
->scalarNode('service')->defaultNull()->end()
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/DependencyInjection/CommandHandlerCompilerPass.php#L40
Escaped Mutant for Mutator "UnwrapStrToLower":
@@ @@
$parameterResolverId = sprintf('.event_sourcing.handler_parameter_resolver.%s', $aggregateName);
foreach (HandlerFinder::findInClass($aggregateClass) as $aggregateHandler) {
- $handlerId = strtolower(sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method));
+ $handlerId = sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method);
$handlerClass = $aggregateHandler->static ? CreateAggregateHandler::class : UpdateAggregateHandler::class;
$container->register($handlerId, $handlerClass)
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/Command/StoreMigrateCommand.php#L43
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
null,
InputOption::VALUE_REQUIRED,
'How many messages should be buffered',
- 1_000,
+ 999,
);
}
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/Command/StoreMigrateCommand.php#L43
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
null,
InputOption::VALUE_REQUIRED,
'How many messages should be buffered',
- 1_000,
+ 1001,
);
}
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/Command/StoreMigrateCommand.php#L37
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
protected function configure(): void
{
- $this
- ->addOption(
- 'buffer',
- null,
- InputOption::VALUE_REQUIRED,
- 'How many messages should be buffered',
- 1_000,
- );
+
}
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
Mutation tests (locked, 8.5, ubuntu-latest):
src/Command/StoreMigrateCommand.php#L32
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
private readonly Store $newStore,
private readonly iterable $translators = [],
) {
- parent::__construct();
+
}
protected function configure(): void
|