Make WordPress Core

Changeset 29150


Ignore:
Timestamp:
07/13/2014 11:58:27 PM (10 years ago)
Author:
DrewAPicture
Message:

Fill out inline documentation for magic methods added to the Custom_Image_Header class in [28481], [28521], and [28524].

See #22234 and #28885.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/custom-header.php

    r28524 r29150  
    8585     *
    8686     * @since 4.0.0
    87      * @param string $name
    88      * @return mixed
     87     * @access public
     88     *
     89     * @param string $name Property to get.
     90     * @return mixed Property.
    8991     */
    9092    public function __get( $name ) {
     
    9698     *
    9799     * @since 4.0.0
    98      * @param string $name
    99      * @param string $value
    100      * @return mixed
     100     * @access public
     101     *
     102     * @param string $name  Property to set.
     103     * @param mixed  $value Property value.
     104     * @return mixed Newly-set property.
    101105     */
    102106    public function __set( $name, $value ) {
     
    108112     *
    109113     * @since 4.0.0
    110      * @param string $name
    111      * @return mixed
     114     * @access public
     115     *
     116     * @param string $name Property to check if set.
     117     * @return bool Whether the property is set.
    112118     */
    113119    public function __isset( $name ) {
     
    119125     *
    120126     * @since 4.0.0
    121      * @param string $name
    122      * @return mixed
     127     * @access public
     128     *
     129     * @param string $name Property to unset.
    123130     */
    124131    public function __unset( $name ) {
Note: See TracChangeset for help on using the changeset viewer.