Changeset 51780 for trunk/src/wp-includes/class-wp-walker.php
- Timestamp:
- 09/09/2021 01:02:46 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-walker.php
r51779 r51780 101 101 * 102 102 * @since 2.1.0 103 * @since 5.9.0 Renamed `$object` (a PHP reserved keyword) to `$data_object` for PHP 8 named parameter support. 103 104 * @abstract 104 105 * 105 * @param string $output Used to append additional content (passed by reference).106 * @param object $ object The data object.107 * @param int $depth Depth of the item.108 * @param array $args An array of additional arguments.109 */ 110 public function end_el( &$output, $ object, $depth = 0, $args = array() ) {}106 * @param string $output Used to append additional content (passed by reference). 107 * @param object $data_object The data object. 108 * @param int $depth Depth of the item. 109 * @param array $args An array of additional arguments. 110 */ 111 public function end_el( &$output, $data_object, $depth = 0, $args = array() ) {} 111 112 112 113 /**
Note: See TracChangeset
for help on using the changeset viewer.