Lock file maintenance #4588
Annotations
10 warnings
Infection:
src/Aggregate/AggregateRootAttributeBehaviour.php#L27
Escaped Mutant for Mutator "ProtectedVisibility":
--- Original
+++ New
@@ @@
/** @var (callable(object $event): void)|null */
#[Ignore]
private $recorder = null;
- protected function apply(object $event) : void
+ private function apply(object $event) : void
{
$metadata = static::metadata();
if (!array_key_exists($event::class, $metadata->applyMethods)) {
|
Infection:
src/Aggregate/AggregateRootAttributeBehaviour.php#L66
Escaped Mutant for Mutator "AssignCoalesce":
--- Original
+++ New
@@ @@
private function passRecorderToChildAggregates() : void
{
$metadata = static::metadata();
- $this->recorder ??= $this->recordThat(...);
+ $this->recorder = $this->recordThat(...);
foreach ($metadata->childAggregates as $property) {
if (!isset($this->{$property})) {
continue;
|
Infection:
src/Aggregate/AggregateRootAttributeBehaviour.php#L81
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
}
public function aggregateRootId() : AggregateRootId
{
- if ($this->cachedAggregateRootId instanceof AggregateRootId) {
+ if (false) {
return $this->cachedAggregateRootId;
}
$metadata = static::metadata();
|
Infection:
src/Console/Command/DatabaseCreateCommand.php#L49
Escaped Mutant for Mutator "LogicalAnd":
--- Original
+++ New
@@ @@
$tempConnection = $this->helper->copyConnectionWithoutDatabase($this->connection);
$ifNotExists = InputHelper::bool($input->getOption('if-not-exists'));
$hasDatabase = $this->helper->hasDatabase($tempConnection, $databaseName);
- if ($ifNotExists && $hasDatabase) {
+ if ($ifNotExists || $hasDatabase) {
$console->warning(sprintf('Database "%s" already exists. Skipped.', $databaseName));
$tempConnection->close();
return 0;
|
Infection:
src/Console/Command/DatabaseCreateCommand.php#L51
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$hasDatabase = $this->helper->hasDatabase($tempConnection, $databaseName);
if ($ifNotExists && $hasDatabase) {
$console->warning(sprintf('Database "%s" already exists. Skipped.', $databaseName));
- $tempConnection->close();
+
return 0;
}
try {
|
Infection:
src/Console/Command/DatabaseCreateCommand.php#L61
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$console->success(sprintf('Created database "%s"', $databaseName));
} catch (Throwable $e) {
$console->error(sprintf('Could not create database "%s"', $databaseName));
- $console->error($e->getMessage());
+
$tempConnection->close();
return 2;
}
|
Infection:
src/Console/Command/DatabaseCreateCommand.php#L63
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
} catch (Throwable $e) {
$console->error(sprintf('Could not create database "%s"', $databaseName));
$console->error($e->getMessage());
- $tempConnection->close();
+
return 2;
}
$tempConnection->close();
|
Infection:
src/Console/Command/DatabaseCreateCommand.php#L68
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$tempConnection->close();
return 2;
}
- $tempConnection->close();
+
return 0;
}
}
|
Infection:
src/Console/Command/DatabaseDropCommand.php#L51
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$force = InputHelper::bool($input->getOption('force'));
if (!$force) {
$console->caution('This operation should not be executed in a production environment.');
- $console->warning(sprintf('Would drop the database "%s". Please run the operation with --force to execute.', $databaseName));
+
$console->caution('All data will be lost!');
return 2;
}
|
Infection:
src/Console/Command/DatabaseDropCommand.php#L52
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
if (!$force) {
$console->caution('This operation should not be executed in a production environment.');
$console->warning(sprintf('Would drop the database "%s". Please run the operation with --force to execute.', $databaseName));
- $console->caution('All data will be lost!');
+
return 2;
}
$ifExists = InputHelper::bool($input->getOption('if-exists'));
|
Loading