Changeset 34566 for trunk/src/wp-includes/functions.php
- Timestamp:
- 09/25/2015 11:57:46 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r34512 r34566 1874 1874 * @param string $dir Directory. 1875 1875 * @param string $filename File name. 1876 * @param call back$unique_filename_callback Callback. Default null.1876 * @param callable $unique_filename_callback Callback. Default null. 1877 1877 * @return string New filename, if given wasn't unique. 1878 1878 */ … … 2396 2396 * @since 3.4.0 2397 2397 * 2398 * @param call back$function Callback function name.2398 * @param callable $function Callback function name. 2399 2399 */ 2400 2400 $function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' ); … … 2405 2405 * @since 3.4.0 2406 2406 * 2407 * @param call back$function Callback function name.2407 * @param callable $function Callback function name. 2408 2408 */ 2409 2409 $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' ); … … 2414 2414 * @since 3.0.0 2415 2415 * 2416 * @param call back$function Callback function name.2416 * @param callable $function Callback function name. 2417 2417 */ 2418 2418 $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' ); … … 4476 4476 * @access private 4477 4477 * 4478 * @param call back$callback Function that accepts ( ID, $callback_args ) and outputs parent_ID.4478 * @param callable $callback Function that accepts ( ID, $callback_args ) and outputs parent_ID. 4479 4479 * @param int $start The ID to start the loop check at. 4480 4480 * @param int $start_parent The parent_ID of $start to use instead of calling $callback( $start ). … … 4501 4501 * @access private 4502 4502 * 4503 * @param call back$callback Function that accepts ( ID, callback_arg, ... ) and outputs parent_ID.4503 * @param callable $callback Function that accepts ( ID, callback_arg, ... ) and outputs parent_ID. 4504 4504 * @param int $start The ID to start the loop check at. 4505 4505 * @param array $override Optional. An array of ( ID => parent_ID, ... ) to use instead of $callback.
Note: See TracChangeset
for help on using the changeset viewer.