Skip to content

Update dependency mike to v2 #1763

Update dependency mike to v2

Update dependency mike to v2 #1763

Triggered via push November 26, 2023 18:47
Status Success
Total duration 5m 27s
Artifacts
Matrix: Mutation tests
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
Mutation tests (locked, 8.2, ubuntu-latest): src/Aggregate/AggregateRoot.php#L28
Escaped Mutant for Mutator "ProtectedVisibility": --- Original +++ New @@ @@ { } public abstract function aggregateRootId() : string; - protected function apply(object $event) : void + private function apply(object $event) : void { $metadata = self::metadata(); if (!array_key_exists($event::class, $metadata->applyMethods)) {
Mutation tests (locked, 8.2, ubuntu-latest): src/Aggregate/AggregateRoot.php#L58
Escaped Mutant for Mutator "PublicVisibility": --- Original +++ New @@ @@ * * @param list<object> $events */ - public final function catchUp(array $events) : void + protected final function catchUp(array $events) : void { foreach ($events as $event) { $this->playhead++;
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseCreateCommand.php#L63
Escaped Mutant for Mutator "LogicalAnd": --- Original +++ New @@ @@ $tempConnection = $this->helper->copyConnectionWithoutDatabase($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;
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseCreateCommand.php#L65
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 {
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseCreateCommand.php#L75
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; }
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseCreateCommand.php#L77
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();
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseCreateCommand.php#L82
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ $tempConnection->close(); return 2; } - $tempConnection->close(); + return 0; } }
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseDropCommand.php#L64
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; }
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseDropCommand.php#L65
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'));
Mutation tests (locked, 8.2, ubuntu-latest): src/Console/Command/DatabaseDropCommand.php#L73
Escaped Mutant for Mutator "LogicalAnd": --- Original +++ New @@ @@ } $ifExists = InputHelper::bool($input->getOption('if-exists')); $hasDatabase = $this->helper->hasDatabase($tempConnection, $databaseName); - if ($ifExists && !$hasDatabase) { + if ($ifExists || !$hasDatabase) { $console->warning(sprintf('Database "%s" doesn\'t exist. Skipped.', $databaseName)); return 0; }