diff --git a/wp-includes/comment.php b/wp-includes/comment.php index 33a6121fd2..622e83196b 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -224,9 +224,11 @@ class WP_Comment_Query { * Make private/protected methods readable for backwards compatibility * * @since 4.0.0 - * @param string $name - * @param array $arguments - * @return mixed + * @access public + * + * @param callable $name Method to call. + * @param array $arguments Arguments to pass when calling. + * @return mixed|bool Return value of the callback, false otherwise. */ public function __call( $name, $arguments ) { return call_user_func_array( array( $this, $name ), $arguments );