Skip to content
Triggered via push September 21, 2023 02:19
Status Failure
Total duration 46s
Artifacts
Matrix: composer-normalize
Matrix: composer-validate
Matrix: infection
Matrix: php-cs-fixer
Matrix: psalm
Matrix: test
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 2 warnings
test (8.1)
Process completed with exit code 255.
infection (8.1)
Process completed with exit code 1.
infection (8.2)
The job was canceled because "_8_1" failed.
infection (8.2)
The operation was canceled.
infection (8.2): 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
infection (8.2): 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); } }