Commit 0f0e1802 authored by Drew Jaynes's avatar Drew Jaynes
Browse files

Remove all `@package` and `@subpackage` PHPDoc tags not at the file- or class-levels in core.

See #27200.

Built from https://develop.svn.wordpress.org/trunk@27262


git-svn-id: https://core.svn.wordpress.org/trunk@27119 1a063a9b-81f0-0310-95a4-ce76da25c4cd
parent 9bf99382
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -231,7 +231,6 @@ class Walker_Nav_Menu_Edit extends Walker_Nav_Menu {
/**
 * Create HTML list of nav menu input items.
 *
 * @package WordPress
 * @since 3.0.0
 * @uses Walker_Nav_Menu
 */
+3 −8
Original line number Diff line number Diff line
@@ -43,8 +43,7 @@ if ( ! function_exists('maybe_create_table') ) :
 * Create database table, if it doesn't already exist.
 *
 * @since 1.0.0
 * @package WordPress
 * @subpackage Plugin
 *
 * @uses $wpdb
 *
 * @param string $table_name Database table name.
@@ -75,8 +74,7 @@ if ( ! function_exists('maybe_add_column') ) :
 * Add column to database table, if column doesn't already exist in table.
 *
 * @since 1.0.0
 * @package WordPress
 * @subpackage Plugin
 *
 * @uses $wpdb
 *
 * @param string $table_name Database table name
@@ -108,8 +106,7 @@ endif;
 * Drop column from database table, if it exists.
 *
 * @since 1.0.0
 * @package WordPress
 * @subpackage Plugin
 *
 * @uses $wpdb
 *
 * @param string $table_name Table name
@@ -152,8 +149,6 @@ function maybe_drop_column($table_name, $column_name, $drop_ddl) {
 *      Extra
 *
 * @since 1.0.0
 * @package WordPress
 * @subpackage Plugin
 *
 * @param string $table_name Table name
 * @param string $col_name Column name
+0 −4
Original line number Diff line number Diff line
@@ -47,8 +47,6 @@ $step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
 * Display install header.
 *
 * @since 2.5.0
 * @package WordPress
 * @subpackage Installer
 */
function display_header() {
	header( 'Content-Type: text/html; charset=utf-8' );
@@ -73,8 +71,6 @@ function display_header() {
 * Display installer setup form.
 *
 * @since 2.8.0
 * @package WordPress
 * @subpackage Installer
 */
function display_setup_form( $error = null ) {
	global $wpdb;
+0 −2
Original line number Diff line number Diff line
@@ -70,8 +70,6 @@ function startElement($parser, $tagName, $attrs) {
 *
 * @since 0.71
 * @access private
 * @package WordPress
 * @subpackage Dummy
 *
 * @param mixed $parser XML Parser resource.
 * @param string $tagName XML tag name.
+0 −4
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ if ( ! current_user_can( 'edit_posts' ) || ! current_user_can( get_post_type_obj
/**
 * Press It form handler.
 *
 * @package WordPress
 * @subpackage Press_This
 * @since 2.6.0
 *
 * @return int Post ID
@@ -163,8 +161,6 @@ if ( !empty($_REQUEST['ajax']) ) {
		/**
		 * Retrieve all image URLs from given URI.
		 *
		 * @package WordPress
		 * @subpackage Press_This
		 * @since 2.6.0
		 *
		 * @param string $uri
Loading