Make WordPress Core


Ignore:
Timestamp:
06/19/2020 10:53:54 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Remove unnecessary variables names from @return tags.

See #49572.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r48099 r48100  
    27622762 *
    27632763 * @param mixed $value The array or string to be stripped.
    2764  * @return mixed $value The stripped value.
     2764 * @return mixed The stripped value.
    27652765 */
    27662766function stripslashes_from_strings_only( $value ) {
     
    27742774 *
    27752775 * @param mixed $value The array or string to be encoded.
    2776  * @return mixed $value The encoded value.
     2776 * @return mixed The encoded value.
    27772777 */
    27782778function urlencode_deep( $value ) {
     
    27862786 *
    27872787 * @param mixed $value The array or string to be encoded.
    2788  * @return mixed $value The encoded value.
     2788 * @return mixed The encoded value.
    27892789 */
    27902790function rawurlencode_deep( $value ) {
     
    27982798 *
    27992799 * @param mixed $value The array or string to be decoded.
    2800  * @return mixed $value The decoded value.
     2800 * @return mixed The decoded value.
    28012801 */
    28022802function urldecode_deep( $value ) {
Note: See TracChangeset for help on using the changeset viewer.