Changeset 61470 for trunk/src/wp-includes/class-wp-comment.php
- Timestamp:
- 01/11/2026 06:48:15 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-comment.php
r59805 r61470 324 324 */ 325 325 public function get_child( $child_id ) { 326 if ( isset( $this->children[ $child_id ] ) ) { 327 return $this->children[ $child_id ]; 328 } 329 330 return false; 326 return $this->children[ $child_id ] ?? false; 331 327 } 332 328
Note: See TracChangeset
for help on using the changeset viewer.