Changeset 59153
- Timestamp:
- 10/01/2024 05:19:37 PM (6 weeks ago)
- Location:
- trunk/src/wp-includes/interactivity-api
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/interactivity-api/class-wp-interactivity-api.php
r59131 r59153 102 102 * 103 103 * @since 6.7.0 104 * @var array <mixed>|null104 * @var array{attributes: array<string, string|bool>}|null 105 105 */ 106 106 private $current_element = null; 107 107 108 /** 108 109 * Gets and/or sets the initial state of an Interactivity API store for a … … 307 308 : array(); 308 309 } 310 309 311 /** 310 312 * Returns an array representation of the current element being processed. … … 314 316 * @since 6.7.0 315 317 * 316 * @return array |null Current element.318 * @return array{attributes: array<string, string|bool>}|null Current element. 317 319 */ 318 320 public function get_element(): ?array { -
trunk/src/wp-includes/interactivity-api/interactivity-api.php
r59131 r59153 134 134 * @since 6.7.0 135 135 * 136 * @return array |null Current element.136 * @return array{attributes: array<string, string|bool>}|null Current element. 137 137 */ 138 138 function wp_interactivity_get_element(): ?array {
Note: See TracChangeset
for help on using the changeset viewer.