Changeset 29140
- Timestamp:
- 07/13/2014 11:34:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r29116 r29140 841 841 842 842 /** 843 * Make private properties readable for backwards compatibility 843 * Make private properties readable for backwards compatibility. 844 844 * 845 845 * @since 4.0.0 846 * @param string $name 847 * @return mixed 846 * @access public 847 * 848 * @param string $name Property to get 849 * @return mixed Property. 848 850 */ 849 851 public function __get( $name ) { … … 852 854 853 855 /** 854 * Make private properties setable for backwards compatibility 856 * Make private properties setable for backwards compatibility. 855 857 * 856 858 * @since 4.0.0 857 * @param string $name 858 * @param string $value 859 * @return mixed 859 * @access public 860 * 861 * @param string $name Property to set. 862 * @param mixed $value Property value. 863 * @return mixed Newly-set property. 860 864 */ 861 865 public function __set( $name, $value ) { … … 864 868 865 869 /** 866 * Make private properties checkable for backwards compatibility 870 * Make private properties checkable for backwards compatibility. 867 871 * 868 872 * @since 4.0.0 869 * @param string $name 870 * @return mixed 873 * @access public 874 * 875 * @param string $name Property to check if set. 876 * @return bool Whether the property is set. 871 877 */ 872 878 public function __isset( $name ) { … … 875 881 876 882 /** 877 * Make private properties unsetable for backwards compatibility 883 * Make private properties unsetable for backwards compatibility. 878 884 * 879 885 * @since 4.0.0 880 * @param string $name 881 * @return mixed 886 * @access public 887 * 888 * @param string $name Property to unset. 882 889 */ 883 890 public function __unset( $name ) { … … 889 896 * 890 897 * @since 4.0.0 891 * @param string $name 892 * @param array $arguments 893 * @return mixed 898 * @access public 899 * 900 * @param callable $name Method to call. 901 * @param array $arguments Arguments to pass when calling. 902 * @return mixed|bool Return value of the callback, false otherwise. 894 903 */ 895 904 public function __call( $name, $arguments ) {
Note: See TracChangeset
for help on using the changeset viewer.