From 49fdc296bae7fd10fab0952d67c43a1e4ff4d2b7 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Sun, 13 Jul 2014 23:58:27 +0000 Subject: [PATCH] Fill out inline documentation for magic methods added to the `Custom_Image_Header` class in [28481], [28521], and [28524]. See #22234 and #28885. git-svn-id: https://develop.svn.wordpress.org/trunk@29150 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/custom-header.php | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/wp-admin/custom-header.php b/src/wp-admin/custom-header.php index 2d33bd594a..f77dcec045 100644 --- a/src/wp-admin/custom-header.php +++ b/src/wp-admin/custom-header.php @@ -84,8 +84,10 @@ class Custom_Image_Header { * Make private properties readable for backwards compatibility * * @since 4.0.0 - * @param string $name - * @return mixed + * @access public + * + * @param string $name Property to get. + * @return mixed Property. */ public function __get( $name ) { return $this->$name; @@ -95,9 +97,11 @@ class Custom_Image_Header { * Make private properties setable for backwards compatibility * * @since 4.0.0 - * @param string $name - * @param string $value - * @return mixed + * @access public + * + * @param string $name Property to set. + * @param mixed $value Property value. + * @return mixed Newly-set property. */ public function __set( $name, $value ) { return $this->$name = $value; @@ -107,8 +111,10 @@ class Custom_Image_Header { * Make private properties checkable for backwards compatibility * * @since 4.0.0 - * @param string $name - * @return mixed + * @access public + * + * @param string $name Property to check if set. + * @return bool Whether the property is set. */ public function __isset( $name ) { return isset( $this->$name ); @@ -118,8 +124,9 @@ class Custom_Image_Header { * Make private properties unsetable for backwards compatibility * * @since 4.0.0 - * @param string $name - * @return mixed + * @access public + * + * @param string $name Property to unset. */ public function __unset( $name ) { unset( $this->$name );