Make WordPress Core


Ignore:
Timestamp:
12/01/2014 01:33:34 AM (10 years ago)
Author:
wonderboymusic
Message:

Improve various @param docs for src/wp-includes/*.

See #30224.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/cron.php

    r30537 r30681  
    6767 * @param string $hook Action hook to execute when cron is run.
    6868 * @param array $args Optional. Arguments to pass to the hook's callback function.
    69  * @return bool|null False on failure, null when complete with scheduling event.
     69 * @return false|null False on failure, null when complete with scheduling event.
    7070 */
    7171function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array()) {
     
    100100 * @param string $hook Action hook to execute when cron is run.
    101101 * @param array $args Optional. Arguments to pass to the hook's callback function.
    102  * @return bool|null False on failure. Null when event is rescheduled.
     102 * @return false|null False on failure. Null when event is rescheduled.
    103103 */
    104104function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array() ) {
Note: See TracChangeset for help on using the changeset viewer.