API Improve type safety for Controller::join_links() (#11426)

This commit is contained in:
Guy Sartorelli 2024-10-17 17:15:24 +13:00 committed by GitHub
parent 6bb9a0b33d
commit 666b4094b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -627,9 +627,8 @@ class Controller extends RequestHandler implements TemplateGlobalProvider
* Caution: All parameters are expected to be URI-encoded already. * Caution: All parameters are expected to be URI-encoded already.
* *
* @param string|array $arg One or more link segments, or list of link segments as an array * @param string|array $arg One or more link segments, or list of link segments as an array
* @return string
*/ */
public static function join_links($arg = null) public static function join_links($arg = null): string
{ {
if (func_num_args() === 1 && is_array($arg)) { if (func_num_args() === 1 && is_array($arg)) {
$args = $arg; $args = $arg;