Update rector/rector requirement from ^1.2 to ^2.0 (#156) #558
Annotations
11 warnings
mutation / PHP 8.1-ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
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;
}
|