Changeset 46661 for trunk/src/wp-includes/class.wp-dependencies.php
- Timestamp:
- 11/05/2019 09:25:53 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class.wp-dependencies.php
r45590 r46661 26 26 27 27 /** 28 * An array of queued _WP_Dependency handleobjects.28 * An array of handles of queued objects. 29 29 * 30 30 * @since 2.6.8 31 * @var array31 * @var string[] 32 32 */ 33 33 public $queue = array(); 34 34 35 35 /** 36 * An array of _WP_Dependency handleobjects to queue.37 * 38 * @since 2.6.0 39 * @var array36 * An array of handles of objects to queue. 37 * 38 * @since 2.6.0 39 * @var string[] 40 40 */ 41 41 public $to_do = array(); 42 42 43 43 /** 44 * An array of _WP_Dependency handleobjects already queued.45 * 46 * @since 2.6.0 47 * @var array44 * An array of handles of objects already queued. 45 * 46 * @since 2.6.0 47 * @var string[] 48 48 */ 49 49 public $done = array(); … … 84 84 * @since 2.8.0 Added the `$group` parameter. 85 85 * 86 * @param mixed $handles Optional. Items to be processed: Process queue (false), process item (string), process items (array of strings).87 * @param mixed $groupGroup level: level (int), no groups (false).88 * @return array Handles of items that have been processed.86 * @param mixed $handles Optional. Items to be processed: Process queue (false), process item (string), process items (array of strings). 87 * @param int|false $group Optional. Group level: level (int), no groups (false). 88 * @return string[] Array of handles of items that have been processed. 89 89 */ 90 90 public function do_items( $handles = false, $group = false ) { … … 137 137 * @since 2.8.0 Added the `$group` parameter. 138 138 * 139 * @param mixed$handles Item handle and argument (string) or item handles and arguments (array of strings).140 * @param bool $recursion Internal flag that function is calling itself.141 * @param int|false $group Group level: (int) level, (false) no groups.139 * @param string|string[] $handles Item handle and argument (string) or item handles and arguments (array of strings). 140 * @param bool $recursion Internal flag that function is calling itself. 141 * @param int|false $group Group level: (int) level, (false) no groups. 142 142 * @return bool True on success, false on failure. 143 143 */ … … 271 271 * @since 2.6.0 Moved from `WP_Scripts`. 272 272 * 273 * @param mixed$handles Item handle and argument (string) or item handles and arguments (array of strings).273 * @param string|string[] $handles Item handle and argument (string) or item handles and arguments (array of strings). 274 274 * @return void 275 275 */ … … 291 291 * @since 2.6.0 Moved from `WP_Scripts`. 292 292 * 293 * @param mixed$handles Item handle and argument (string) or item handles and arguments (array of strings).293 * @param string|string[] $handles Item handle and argument (string) or item handles and arguments (array of strings). 294 294 */ 295 295 public function enqueue( $handles ) { … … 314 314 * @since 2.6.0 Moved from `WP_Scripts`. 315 315 * 316 * @param mixed$handles Item handle and argument (string) or item handles and arguments (array of strings).316 * @param string|string[] $handles Item handle and argument (string) or item handles and arguments (array of strings). 317 317 */ 318 318 public function dequeue( $handles ) {
Note: See TracChangeset
for help on using the changeset viewer.