Skip to content

Commit

Permalink
refactor: fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Oct 22, 2023
1 parent 6ddc375 commit 421c9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/View/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ protected function applyFilters(string $replace, array $filters): string
$replace = $this->config->filters[$filter]($replace, ...$param);
}

return $replace;
return (string) $replace;
}

// Plugins
Expand Down

0 comments on commit 421c9eb

Please sign in to comment.