Changeset 29141
- Timestamp:
- 07/13/2014 11:35:52 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/query.php
r29039 r29141 3933 3933 3934 3934 /** 3935 * Make private properties readable for backwards compatibility 3935 * Make private properties readable for backwards compatibility. 3936 3936 * 3937 3937 * @since 4.0.0 3938 * @param string $name 3939 * @return mixed 3938 * @access public 3939 * 3940 * @param string $name Property to get 3941 * @return mixed Property. 3940 3942 */ 3941 3943 public function __get( $name ) { … … 3944 3946 3945 3947 /** 3946 * Make private properties setable for backwards compatibility 3948 * Make private properties setable for backwards compatibility. 3947 3949 * 3948 3950 * @since 4.0.0 3949 * @param string $name 3950 * @return mixed 3951 * @access public 3952 * 3953 * @param string $name Property to check if set. 3954 * @return bool Whether the property is set. 3951 3955 */ 3952 3956 public function __isset( $name ) { … … 3955 3959 3956 3960 /** 3957 * Make private properties setable for backwards compatibility 3961 * Make private properties setable for backwards compatibility. 3958 3962 * 3959 3963 * @since 4.0.0 3960 * @param string $name 3961 * @return mixed 3964 * @access public 3965 * 3966 * @param string $name Property to unset. 3962 3967 */ 3963 3968 public function __unset( $name ) { … … 3966 3971 3967 3972 /** 3968 * Make private/protected methods readable for backwards compatibility 3973 * Make private/protected methods readable for backwards compatibility. 3969 3974 * 3970 3975 * @since 4.0.0 3971 * @param string $name 3972 * @param array $arguments 3973 * @return mixed 3976 * @access public 3977 * 3978 * @param callable $name Method to call. 3979 * @param array $arguments Arguments to pass when calling. 3980 * @return mixed|bool Return value of the callback, otherwise false. 3974 3981 */ 3975 3982 public function __call( $name, $arguments ) {
Note: See TracChangeset
for help on using the changeset viewer.