Make WordPress Core

Changeset 29147


Ignore:
Timestamp:
07/13/2014 11:51:39 PM (11 years ago)
Author:
DrewAPicture
Message:

Fill out inline documentation for magic methods added to the WP_Filesystem_Base class in [28521].

See #22234 and #28885.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-filesystem-base.php

    r28904 r29147  
    4141
    4242    /**
    43      * Make private properties readable for backwards compatibility
     43     * Make private properties readable for backwards compatibility.
    4444     *
    4545     * @since 4.0.0
     46     * @access public
     47     *
    4648     * @param string $name
    4749     * @return mixed
     
    5254
    5355    /**
    54      * Make private properties setable for backwards compatibility
     56     * Make private properties setable for backwards compatibility.
    5557     *
    5658     * @since 4.0.0
    57      * @param string $name
    58      * @param string $value
    59      * @return mixed
     59     * @access public
     60     *
     61     * @param string $name  Property to set.
     62     * @param mixed  $value Property value.
     63     * @return mixed Newly-set property.
    6064     */
    6165    public function __set( $name, $value ) {
     
    6468
    6569    /**
    66      * Make private properties checkable for backwards compatibility
     70     * Make private properties checkable for backwards compatibility.
    6771     *
    6872     * @since 4.0.0
    69      * @param string $name
    70      * @return mixed
     73     * @access public
     74     *
     75     * @param string $name Property to check if set.
     76     * @return bool Whether the property is set.
    7177     */
    7278    public function __isset( $name ) {
     
    7884     *
    7985     * @since 4.0.0
    80      * @param string $name
    81      * @return mixed
     86     * @access public
     87     *
     88     * @param string $name Property to unset.
    8289     */
    8390    public function __unset( $name ) {
Note: See TracChangeset for help on using the changeset viewer.