Skip to content

Remove yiisoft/cache #1186

Remove yiisoft/cache

Remove yiisoft/cache #1186

Triggered via push October 13, 2023 11:56
Status Success
Total duration 16m 47s
Artifacts

mutation.yml

on: push
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([self::class])); } }
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) {