Skip to content

$expression->getType() returns database type but not an abstract type #1185

$expression->getType() returns database type but not an abstract type

$expression->getType() returns database type but not an abstract type #1185

Triggered via pull request October 10, 2023 10:53
Status Success
Total duration 13m 15s
Artifacts

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) {