Fix linting

This commit is contained in:
Nigel Sheldon 2020-11-21 15:51:56 +01:00
commit 1614145b18
262 changed files with 45324 additions and 42695 deletions

View file

@ -21,10 +21,10 @@
*/
function smarty_modifier_spacify($string, $spacify_char = ' ')
{
return implode($spacify_char,
preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));
return implode(
$spacify_char,
preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY)
);
}
/* vim: set expandtab: */
?>