Skip to content

Fix docs

Fix docs #549

Triggered via pull request May 22, 2024 13:11
Status Success
Total duration 49s
Artifacts

mutation.yml

on: pull_request
Matrix: mutation / roave-infection
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
mutation / PHP 8.1-ubuntu-latest: src/UrlGenerator.php#L117
Escaped Mutant for Mutator "UnwrapRtrim": --- Original +++ New @@ @@ if ($host !== '' && $isRelativeHost) { $host = '//' . $host; } - return $this->ensureScheme(rtrim($host, '/') . $url, $scheme); + return $this->ensureScheme($host . $url, $scheme); } return $uri === null ? $url : $this->generateAbsoluteFromLastMatchedRequest($url, $uri, $scheme); }
mutation / PHP 8.1-ubuntu-latest: src/UrlGenerator.php#L172
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ { $port = ''; $uriPort = $uri->getPort(); - if ($uriPort !== 80 && $uriPort !== null) { + if ($uriPort !== 79 && $uriPort !== null) { $port = ':' . $uriPort; } return $this->ensureScheme('://' . $uri->getHost() . $port . $url, $scheme ?? $uri->getScheme());
mutation / PHP 8.1-ubuntu-latest: src/UrlGenerator.php#L172
Escaped Mutant for Mutator "IncrementInteger": --- Original +++ New @@ @@ { $port = ''; $uriPort = $uri->getPort(); - if ($uriPort !== 80 && $uriPort !== null) { + if ($uriPort !== 81 && $uriPort !== null) { $port = ':' . $uriPort; } return $this->ensureScheme('://' . $uri->getHost() . $port . $url, $scheme ?? $uri->getScheme());
mutation / PHP 8.1-ubuntu-latest: src/UrlGenerator.php#L222
Escaped Mutant for Mutator "DecrementInteger": --- Original +++ New @@ @@ */ private function isRelative(string $url) : bool { - return strncmp($url, '//', 2) && !str_contains($url, '://'); + return strncmp($url, '//', 1) && !str_contains($url, '://'); } public function getUriPrefix() : string {
mutation / PHP 8.1-ubuntu-latest: src/UrlGenerator.php#L308
Escaped Mutant for Mutator "UnwrapStrReplace": --- Original +++ New @@ @@ $path .= $this->encodeRaw ? rawurlencode($arguments[$part[0]]) : urlencode($arguments[$part[0]]); } } - $path = str_replace('//', '/', $path); + $path = $path; $queryString = ''; if (!empty($queryParameters)) { $queryString = http_build_query($queryParameters);
mutation / PHP 8.1-ubuntu-latest: src/UrlMatcher.php#L85
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { $this->fastRouteCollector = $fastRouteCollector ?? $this->createRouteCollector(); $this->dispatcherCallback = $dispatcherFactory; - $this->loadConfig($config); + $this->loadDispatchData(); } public function match(ServerRequestInterface $request) : MatchingResult
mutation / PHP 8.1-ubuntu-latest: src/UrlMatcher.php#L124
Escaped Mutant for Mutator "Identical": --- Original +++ New @@ @@ */ private function loadConfig(?array $config) : void { - if ($config === null) { + if ($config !== null) { return; } if (isset($config[self::CONFIG_CACHE_KEY])) {
mutation / PHP 8.1-ubuntu-latest: src/UrlMatcher.php#L129
Escaped Mutant for Mutator "CastString": --- Original +++ New @@ @@ return; } if (isset($config[self::CONFIG_CACHE_KEY])) { - $this->cacheKey = (string) $config[self::CONFIG_CACHE_KEY]; + $this->cacheKey = $config[self::CONFIG_CACHE_KEY]; } } /**
mutation / PHP 8.1-ubuntu-latest: src/UrlMatcher.php#L216
Escaped Mutant for Mutator "Continue_": --- Original +++ New @@ @@ { foreach ($this->routeCollection->getRoutes() as $route) { if (!$route->getData('hasMiddlewares')) { - continue; + break; } $hosts = $route->getData('hosts'); $count = count($hosts);
mutation / PHP 8.1-ubuntu-latest: src/UrlMatcher.php#L260
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } $dispatchData = $this->fastRouteCollector->getData(); if ($this->cache !== null) { - $this->cacheDispatchData($dispatchData); + } return $dispatchData; }