Skip to content

Commit ea696b3

Browse files
committed
Fix psalm error
1 parent 17291d8 commit ea696b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/View/Helper/GlideHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function url(string $path, array $params = []): string
7575
{
7676
$base = true;
7777
if (isset($params['_base'])) {
78-
$base = $params['_base'];
78+
$base = (bool)$params['_base'];
7979
unset($params['_base']);
8080
}
8181
$url = $this->urlBuilder()->getUrl($path, $params);

0 commit comments

Comments
 (0)