Annotations
2 errors and 2 warnings
|
|
src/TyphoonOPcache.php#L36
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
return new \DateTimeImmutable();
}
};
- $this->scriptStartTime = $_SERVER['REQUEST_TIME'] ?? $this->clock->now()->getTimestamp();
+ $this->scriptStartTime = $this->clock->now()->getTimestamp() ?? $_SERVER['REQUEST_TIME'];
}
/**
* @psalm-suppress MixedArgument
|
src/TyphoonOPcache.php#L255
Escaped Mutant for Mutator "IfNegation":
--- Original
+++ New
@@ @@
/** @psalm-suppress MissingThrowsDocblock */
throw $exception;
}
- if (self::opcacheEnabled()) {
+ if (!self::opcacheEnabled()) {
opcache_invalidate($file, true);
}
}
|
The logs for this run have expired and are no longer available.
Loading