Make WordPress Core


Ignore:
Timestamp:
09/21/2019 05:40:58 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Docblock corrections and improvements, mostly related to various pre_* filters.

See #47110

File:
1 edited

Legend:

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

    r46194 r46232  
    27042704         * @since 4.2.0
    27052705         *
    2706          * @param string $charset The character set to use. Default null.
    2707          * @param string $table   The name of the table being checked.
     2706         * @param string|null $charset The character set to use. Default null.
     2707         * @param string      $table   The name of the table being checked.
    27082708         */
    27092709        $charset = apply_filters( 'pre_get_table_charset', null, $table );
     
    28082808         * @since 4.2.0
    28092809         *
    2810          * @param string $charset The character set to use. Default null.
    2811          * @param string $table   The name of the table being checked.
    2812          * @param string $column  The name of the column being checked.
     2810         * @param string|null $charset The character set to use. Default null.
     2811         * @param string      $table   The name of the table being checked.
     2812         * @param string      $column  The name of the column being checked.
    28132813         */
    28142814        $charset = apply_filters( 'pre_get_col_charset', null, $table, $column );
Note: See TracChangeset for help on using the changeset viewer.