From 06eced0604dcfcbfb3533c70c4dff158de9c4b08 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 26 Feb 2016 17:11:56 +0000 Subject: [PATCH] Docs: Add a missing description for the `&$themes` parameter in the DocBlock for `WP_Theme::sort_by_name()`. See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@36736 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-theme.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-theme.php b/src/wp-includes/class-wp-theme.php index cae0e1616d..f0cce7f371 100644 --- a/src/wp-includes/class-wp-theme.php +++ b/src/wp-includes/class-wp-theme.php @@ -1316,12 +1316,14 @@ final class WP_Theme implements ArrayAccess { } /** - * Sort themes by name. + * Sorts themes by name. * * @since 3.4.0 * * @static * @access public + * + * @param array $themes Array of themes to sort, passed by reference. */ public static function sort_by_name( &$themes ) { if ( 0 === strpos( get_locale(), 'en_' ) ) {