continuous-integration.yml
on: push
Matrix: composer-normalize
Matrix: composer-validate
Matrix: infection
Matrix: php-cs-fixer
Matrix: psalm
Matrix: test
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);
}
}
|