Make WordPress Core

Changeset 32050


Ignore:
Timestamp:
04/05/2015 05:16:20 PM (10 years ago)
Author:
DrewAPicture
Message:

Remove unnecessary inline @see tags from a variety of parameter and return descriptions in wp-includes/wp-db.php.

See #31888.

File:
1 edited

Legend:

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

    r32049 r32050  
    21802180     *
    21812181     * @param string $table Table name.
    2182      * @return string|WP_Error Table character set, {@see WP_Error} object if it couldn't be found.
     2182     * @return string|WP_Error Table character set, WP_Error object if it couldn't be found.
    21832183     */
    21842184    protected function get_table_charset( $table ) {
     
    22802280     * @param string $column Column name.
    22812281     * @return mixed Column character set as a string. False if the column has no
    2282      *               character set. {@see WP_Error} object if there was an error.
     2282     *               character set. WP_Error object if there was an error.
    22832283     */
    22842284    public function get_col_charset( $table, $column ) {
     
    23712371     *                        each value. This works as a passthrough: any additional keys
    23722372     *                        such as 'field' are retained in each value array. If we cannot
    2373      *                        remove invalid characters, a {@see WP_Error} object is returned.
     2373     *                        remove invalid characters, a WP_Error object is returned.
    23742374     */
    23752375    protected function strip_invalid_text( $data ) {
     
    25042504     *
    25052505     * @param string $query Query to convert.
    2506      * @return string|WP_Error The converted query, or a {@see WP_Error} object if the conversion fails.
     2506     * @return string|WP_Error The converted query, or a WP_Error object if the conversion fails.
    25072507     */
    25082508    protected function strip_invalid_text_from_query( $query ) {
     
    25452545     * @param string $column Column name.
    25462546     * @param string $value  The text to check.
    2547      * @return string|WP_Error The converted string, or a `WP_Error` object if the conversion fails.
     2547     * @return string|WP_Error The converted string, or a WP_Error object if the conversion fails.
    25482548     */
    25492549    public function strip_invalid_text_for_column( $table, $column, $value ) {
Note: See TracChangeset for help on using the changeset viewer.