This repository was archived by the owner on Aug 21, 2026. It is now read-only.
github-actions (3.x): bump actions/checkout #1018
Annotations
2 errors and 4 warnings
|
|
|
|
|
src/View/Helper/ViteUrlFactory.php#L64
Escaped Mutant for Mutator "LogicalNot":
@@ @@
$buildDir = null;
}
$viteHost = $config['vite-host'] ?? null;
- if (!is_string($viteHost)) {
+ if (is_string($viteHost)) {
$viteHost = null;
}
return new ViteUrl($publicDir, $buildDir, $viteHost);
}
}
|
|
src/View/Helper/ViteUrl.php#L78
Escaped Mutant for Mutator "UnwrapLtrim":
@@ @@
throw new RuntimeException('A Public Dir is required');
}
if ($this->viteHost) {
- return $this->viteHost . '/' . ltrim($name, '/');
+ return $this->viteHost . '/' . $name;
}
$view = $this->getView();
if (!$view instanceof PhpRenderer) {
|
|
|
|
|
The logs for this run have expired and are no longer available.
Loading