ColumnSchema classes for performance of typecasting #1164
Annotations
2 warnings
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) {
|
src/Schema.php#L1049
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()));
}
}
|
The logs for this run have expired and are no longer available.
Loading