Index: pub/wporg-photos/functions.php
===================================================================
--- pub/wporg-photos/functions.php	(revision 12293)
+++ pub/wporg-photos/functions.php	(working copy)
@@ -190,6 +190,7 @@
  *     @type string $site    Optional. Site title when not on home page.
  * }
  * @return array Filtered title parts.
+ * @global WP_Query $wp_query Query object.
  */
 function document_title( $title ) {
 	global $wp_query;
Index: pub/wporg-plugins/functions.php
===================================================================
--- pub/wporg-plugins/functions.php	(revision 12293)
+++ pub/wporg-plugins/functions.php	(working copy)
@@ -254,6 +254,7 @@
  *     @type string $site    Optional. Site title when not on home page.
  * }
  * @return array Filtered title parts.
+ * @global WP_Query $wp_query Query object.
  */
 function document_title( $title ) {
 	global $wp_query;
Index: pub/wporg-plugins/template-parts/plugin-single.php
===================================================================
--- pub/wporg-plugins/template-parts/plugin-single.php	(revision 12293)
+++ pub/wporg-plugins/template-parts/plugin-single.php	(working copy)
@@ -5,6 +5,10 @@
  * @link https://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPressdotorg\Plugin_Directory\Theme
+ * @global WP_Post $post Global post object.
+ * @global $section
+ * @global $section_slug
+ * @global $section_content
  */
 
 namespace WordPressdotorg\Plugin_Directory\Theme;
Index: pub/wporg-plugins/template-parts/section-advanced.php
===================================================================
--- pub/wporg-plugins/template-parts/section-advanced.php	(revision 12293)
+++ pub/wporg-plugins/template-parts/section-advanced.php	(working copy)
@@ -5,6 +5,7 @@
  * @link https://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPressdotorg\Plugin_Directory\Theme
+ * @global WP_Post $post Global post object.
  */
 
 namespace WordPressdotorg\Plugin_Directory\Theme;
Index: pub/wporg-plugins/template-parts/section-blocks.php
===================================================================
--- pub/wporg-plugins/template-parts/section-blocks.php	(revision 12293)
+++ pub/wporg-plugins/template-parts/section-blocks.php	(working copy)
@@ -5,6 +5,9 @@
  * @link https://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPressdotorg\Plugin_Directory\Theme
+ * @global $section
+ * @global $section_slug
+ * @global $section_content
  */
 
 global $section, $section_slug, $section_content;
Index: pub/wporg-plugins/template-parts/section.php
===================================================================
--- pub/wporg-plugins/template-parts/section.php	(revision 12293)
+++ pub/wporg-plugins/template-parts/section.php	(working copy)
@@ -5,6 +5,9 @@
  * @link https://codex.wordpress.org/Template_Hierarchy
  *
  * @package WordPressdotorg\Plugin_Directory\Theme
+ * @global $section
+ * @global $section_slug
+ * @global $section_content
  */
 
 global $section, $section_slug, $section_content;
Index: pub/wporg-support/functions.php
===================================================================
--- pub/wporg-support/functions.php	(revision 12293)
+++ pub/wporg-support/functions.php	(working copy)
@@ -272,6 +272,9 @@
 }
 add_filter( 'excerpt_length', 'wporg_support_excerpt_length' );
 
+/**
+ * @param string $title
+ */
 function wporg_support_bbp_raw_title( $title ) {
 	if ( get_query_var( 'paged' ) && ! is_404() ) {
 		$title .= sprintf( ' - page %s', get_query_var( 'paged' ) );
@@ -285,6 +288,7 @@
  * Add bbPress titles to the document title.
  *
  * bbPress doesn't support `title-tag` theme support, instead relying upon `wp_title` filters instead.
+ * @param string $title
  */
 function wporg_support_pre_get_document_title( $title ) {
 	// See wp_get_document_title()
@@ -649,6 +653,7 @@
 
 /**
  * Change "Stick (to front)" link text to "Stick (to all forums)".
+ * @param string $links
  */
 function wporg_support_change_super_sticky_text( $links ) {
 	if ( isset( $links['stick'] ) ) {
