Changeset 51739 for trunk/src/wp-includes/class-wp-walker.php
- Timestamp:
- 09/08/2021 03:35:32 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-walker.php
r51204 r51739 84 84 * 85 85 * @since 2.1.0 86 * @since 5.9.0 Renamed `$object` (a PHP reserved keyword) to `$data_object` for PHP 8 named parameter support. 86 87 * @abstract 87 88 * 88 89 * @param string $output Used to append additional content (passed by reference). 89 * @param object $ objectThe data object.90 * @param object $data_object The data object. 90 91 * @param int $depth Depth of the item. 91 92 * @param array $args An array of additional arguments. 92 93 * @param int $current_object_id ID of the current item. 93 94 */ 94 public function start_el( &$output, $ object, $depth = 0, $args = array(), $current_object_id = 0 ) {}95 public function start_el( &$output, $data_object, $depth = 0, $args = array(), $current_object_id = 0 ) {} 95 96 96 97 /**
Note: See TracChangeset
for help on using the changeset viewer.