Skip to content

Commit 421c9eb

Browse files
committed
refactor: fix return type
1 parent 6ddc375 commit 421c9eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/View/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ protected function applyFilters(string $replace, array $filters): string
621621
$replace = $this->config->filters[$filter]($replace, ...$param);
622622
}
623623

624-
return $replace;
624+
return (string) $replace;
625625
}
626626

627627
// Plugins

0 commit comments

Comments
 (0)