Skip to content

Update rector/rector requirement from ^0.17 to ^0.19 #1156

Update rector/rector requirement from ^0.17 to ^0.19

Update rector/rector requirement from ^0.17 to ^0.19 #1156

Triggered via pull request August 18, 2023 00:35
Status Success
Total duration 19m 53s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

mutation.yml

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

Annotations

3 warnings
PHP 8-ubuntu-latest: src/ArrayParser.php#L35
Escaped Mutant for Mutator "Increment": --- Original +++ New @@ @@ private function parseArray(string $value, int &$i = 0) : array { if ($value[++$i] === '}') { - ++$i; + --$i; return []; } for ($result = [];; ++$i) {
PHP 8-ubuntu-latest: src/Schema.php#L1036
Escaped Mutant for Mutator "UnwrapArrayMerge": --- Original +++ New @@ @@ */ protected function getCacheTag() : string { - return md5(serialize(array_merge([self::class], $this->generateCacheKey()))); + return md5(serialize($this->generateCacheKey())); } }
PHP 8.1-ubuntu-latest: src/ArrayParser.php#L35
Escaped Mutant for Mutator "Increment": --- Original +++ New @@ @@ private function parseArray(string $value, int &$i = 0) : array { if ($value[++$i] === '}') { - ++$i; + --$i; return []; } for ($result = [];; ++$i) {