diff --git a/src/wp-includes/class-wp-walker.php b/src/wp-includes/class-wp-walker.php
index 1350730a30..335377af8d 100644
a
|
b
|
class Walker { |
276 | 276 | * @since 5.3.0 Formalized the existing `...$args` parameter by adding it |
277 | 277 | * to the function signature. |
278 | 278 | * |
279 | | * @param array $elements |
| 279 | * @param array $elements An array of elements. |
280 | 280 | * @param int $max_depth The maximum hierarchical depth. |
281 | 281 | * @param int $page_num The specific page number, beginning with 1. |
282 | | * @param int $per_page |
| 282 | * @param int $per_page Number of elements per page. |
283 | 283 | * @param mixed ...$args Optional additional arguments. |
284 | 284 | * @return string XHTML of the specified page of elements |
285 | 285 | */ |