- Timestamp:
- 01/09/2023 12:24:49 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-activity/classes/class-bp-activity-feed.php
r13372 r13404 58 58 * @return bool Whether or not data variable exists. 59 59 */ 60 public function __isset( $key ) { return isset( $this->data[$key] ); } 60 public function __isset( $key ) { 61 return isset( $this->data[ $key ] ); 62 } 61 63 62 64 /** … … 68 70 * @return mixed Data in variable if available or null. 69 71 */ 70 public function __get( $key ) { return isset( $this->data[$key] ) ? $this->data[$key] : null; } 72 public function __get( $key ) { 73 return isset( $this->data[ $key ] ) ? $this->data[ $key ] : null; 74 } 71 75 72 76 /** … … 78 82 * @param mixed $value The value to set. 79 83 */ 80 public function __set( $key, $value ) { $this->data[$key] = $value; } 84 public function __set( $key, $value ) { 85 $this->data[ $key ] = $value; 86 } 81 87 82 88 /** … … 207 213 ) 208 214 ); 209 210 215 } 211 216
Note: See TracChangeset
for help on using the changeset viewer.