CI #759
Annotations
8 warnings
PHP 8.2:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "CastArray":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = $mimetypes ?? (require __DIR__ . '/mimetypes.php');
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.2:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = (array) (require __DIR__ . '/mimetypes.php') ?? $mimetypes;
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.1:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "CastArray":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = $mimetypes ?? (require __DIR__ . '/mimetypes.php');
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.1:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = (array) (require __DIR__ . '/mimetypes.php') ?? $mimetypes;
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.3:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "CastArray":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = $mimetypes ?? (require __DIR__ . '/mimetypes.php');
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.3:
src/StaticFileMiddleware.php#L37
Escaped Mutant for Mutator "Coalesce":
--- Original
+++ New
@@ @@
throw new \LogicException(sprintf('Invalid or not supported hash algorithm: "%s"', $hashAlgorithm));
}
$this->hashAlgorithm = $hashAlgorithm;
- $this->mimetypes = $mimetypes ?? (array) (require __DIR__ . '/mimetypes.php');
+ $this->mimetypes = (array) (require __DIR__ . '/mimetypes.php') ?? $mimetypes;
}
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
{
|
PHP 8.3
Failed to download action 'https://api.github.com/repos/SonarSource/sonarcloud-github-action/tarball/44eed6088a971ec48af9300c3701483b8815f622'. Error: The request was canceled due to the configured HttpClient.Timeout of 100 seconds elapsing.
|
PHP 8.3
Back off 12.464 seconds before retry.
|