Move methods from command to abstract pdo command #1197
Annotations
3 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/Connection.php#L32
Escaped Mutant for Mutator "MethodCallRemoval":
--- Original
+++ New
@@ @@
$command->setSql($sql);
}
if ($this->logger !== null) {
- $command->setLogger($this->logger);
+
}
if ($this->profiler !== null) {
$command->setProfiler($this->profiler);
|
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()));
}
}
|
The logs for this run have expired and are no longer available.
Loading