Changeset 58075 for trunk/src/wp-includes/class-wp-script-modules.php
- Timestamp:
- 05/02/2024 01:17:45 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-script-modules.php
r57840 r58075 19 19 * 20 20 * @since 6.5.0 21 * @var array 21 * @var array[] 22 22 */ 23 23 private $registered = array(); … … 275 275 * @since 6.5.0 276 276 * 277 * @return array Script modules marked for enqueue, keyed by script module identifier.277 * @return array[] Script modules marked for enqueue, keyed by script module identifier. 278 278 */ 279 279 private function get_marked_for_enqueue(): array { … … 297 297 * @since 6.5.0 298 298 * 299 300 299 * @param string[] $ids The identifiers of the script modules for which to gather dependencies. 301 * @param array$import_types Optional. Import types of dependencies to retrieve: 'static', 'dynamic', or both.300 * @param string[] $import_types Optional. Import types of dependencies to retrieve: 'static', 'dynamic', or both. 302 301 * Default is both. 303 * @return array List of dependencies, keyed by script module identifier.302 * @return array[] List of dependencies, keyed by script module identifier. 304 303 */ 305 304 private function get_dependencies( array $ids, array $import_types = array( 'static', 'dynamic' ) ) { … … 354 353 * @since 6.5.0 355 354 * 356 * @param string $src Module source url.355 * @param string $src Module source URL. 357 356 * @param string $id Module identifier. 358 357 */
Note: See TracChangeset
for help on using the changeset viewer.