Make WordPress Core


Ignore:
Timestamp:
09/22/2015 09:58:05 AM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Fix some syntactical issues and add missing parameter and return descriptions to the DocBlock for the WP_User::__isset() magic method.

See #32246.

File:
1 edited

Legend:

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

    r34387 r34388  
    260260
    261261    /**
    262      * Magic method for checking the existence of a certain custom field
     262     * Magic method for checking the existence of a certain custom field.
    263263     *
    264264     * @since 3.3.0
    265      * @param string $key
    266      * @return bool
     265     * @access public
     266     *
     267     * @param string $key User meta key to check if set.
     268     * @return bool Whether the given user meta key is set.
    267269     */
    268270    public function __isset( $key ) {
Note: See TracChangeset for help on using the changeset viewer.