Skip to content

Commit cfecc5c

Browse files
Docs: Replace miscellaneous incorrect PHPDoc tags.
* `@contrib` is not a valid tag. * `@origin` is not a valid tag. * `@ref` is not a valid tag. * `@blessed` is not a valid tag and doesn't convey any meaningful information. * `@issue` is not a valid tag. Reference: [https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#phpdoc-tags PHP Documentation Standards: PHPDoc Tags]. Follow-up to [8852], [34754], [38832], [43808]. Props jrf. See #59651. git-svn-id: https://develop.svn.wordpress.org/trunk@57108 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 0079130 commit cfecc5c

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

src/wp-admin/includes/class-wp-filesystem-ssh2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* To use this class you must follow these steps for PHP 5.2.6+
66
*
7-
* @contrib http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes
7+
* {@link http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/ - Installation Notes}
88
*
99
* Compile libssh2 (Note: Only 0.14 is officaly working with PHP 5.2.6+ right now, But many users have found the latest versions work)
1010
*

src/wp-content/themes/twentynineteen/inc/template-functions.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function twentynineteen_get_the_archive_title() {
100100
/**
101101
* Adds custom 'sizes' attribute to responsive image functionality for post thumbnails.
102102
*
103-
* @origin Twenty Nineteen 1.0
103+
* @since Twenty Nineteen 1.0
104104
*
105105
* @param string[] $attr Array of attribute values for the image markup, keyed by attribute name.
106106
* See wp_get_attachment_image().
@@ -163,7 +163,8 @@ function twentynineteen_add_ellipses_to_nav( $nav_menu, $args ) {
163163
* Adjustments to menu attributes to support WCAG 2.0 recommendations
164164
* for flyout and dropdown menus.
165165
*
166-
* @ref https://www.w3.org/WAI/tutorials/menus/flyout/
166+
* @link https://www.w3.org/WAI/tutorials/menus/flyout/
167+
*
167168
* @param array $atts {
168169
* The HTML attributes applied to the menu item's `<a>` element, empty strings are ignored.
169170
*

src/wp-includes/ms-functions.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,8 +2082,6 @@ function redirect_this_site( $deprecated = '' ) {
20822082
*
20832083
* @since MU (3.0.0)
20842084
*
2085-
* @blessed
2086-
*
20872085
* @param array $upload An array of information about the newly-uploaded file.
20882086
* @return string|array If the upload is under the size limit, $upload is returned. Otherwise returns an error message.
20892087
*/

tests/phpunit/tests/rest-api/rest-posts-controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public function test_get_items() {
256256
/**
257257
* A valid query that returns 0 results should return an empty JSON list.
258258
*
259-
* @issue 862
259+
* @link https://github.com/WP-API/WP-API/issues/862
260260
*/
261261
public function test_get_items_empty_query() {
262262
$request = new WP_REST_Request( 'GET', '/wp/v2/posts' );

0 commit comments

Comments
 (0)