Skip to content

Update test according to main PR #1094

Update test according to main PR

Update test according to main PR #1094

Triggered via pull request March 30, 2024 02:11
Status Success
Total duration 48m 9s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation
Fit to window
Zoom out
Zoom in

Annotations

5 warnings
PHP 8.1-ubuntu-latest
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
PHP 8.1-ubuntu-latest: src/Column.php#L41
Escaped Mutant for Mutator "MatchArmRemoval": --- Original +++ New @@ @@ public function asString() : string { $format = match ($this->getTypeCategory()) { - self::TYPE_CATEGORY_PK => '{type}{length}{check}{append}', self::TYPE_CATEGORY_NUMERIC => '{type}{length}{unsigned}{default}{notnull}{check}{append}', self::TYPE_CATEGORY_UUID => '{type}{notnull}{unique}{default}{check}{comment}{append}', self::TYPE_CATEGORY_UUID_PK => '{type}{notnull}{check}{comment}{append}',
PHP 8.1-ubuntu-latest: src/SqlParser.php#L52
Escaped Mutant for Mutator "MatchArmRemoval": --- Original +++ New @@ @@ { $endChar = match ($this->sql[++$this->position]) { '[' => ']', - '<' => '>', '{' => '}', '(' => ')', default => $this->sql[$this->position],
PHP 8.1-ubuntu-latest: src/SqlParser.php#L52
Escaped Mutant for Mutator "MatchArmRemoval": --- Original +++ New @@ @@ $endChar = match ($this->sql[++$this->position]) { '[' => ']', '<' => '>', - '{' => '}', '(' => ')', default => $this->sql[$this->position], };
PHP 8.1-ubuntu-latest: src/SqlParser.php#L52
Escaped Mutant for Mutator "MatchArmRemoval": --- Original +++ New @@ @@ '[' => ']', '<' => '>', '{' => '}', - '(' => ')', default => $this->sql[$this->position], }; ++$this->position;