diff options
Diffstat (limited to 'lib/lib_rss.php')
| -rw-r--r-- | lib/lib_rss.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index 3ba154209..a43bc475f 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -19,10 +19,10 @@ if (COPY_SYSLOG_TO_STDERR) { /** * Build a directory path by concatenating a list of directory names. * - * @param string $path_parts a list of directory names + * @param string ...$path_parts a list of directory names * @return string corresponding to the final pathname */ -function join_path(...$path_parts) { +function join_path(...$path_parts): string { return join(DIRECTORY_SEPARATOR, $path_parts); } |
