Changeset 46596 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 10/26/2019 09:07:10 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r46477 r46596 636 636 * @since 2.7.0 637 637 * 638 * @param array$cookie_elements An array of data for the authentication cookie.638 * @param string[] $cookie_elements An array of data for the authentication cookie. 639 639 */ 640 640 do_action( 'auth_cookie_expired', $cookie_elements ); … … 649 649 * @since 2.7.0 650 650 * 651 * @param array$cookie_elements An array of data for the authentication cookie.651 * @param string[] $cookie_elements An array of data for the authentication cookie. 652 652 */ 653 653 do_action( 'auth_cookie_bad_username', $cookie_elements ); … … 669 669 * @since 2.7.0 670 670 * 671 * @param array$cookie_elements An array of data for the authentication cookie.671 * @param string[] $cookie_elements An array of data for the authentication cookie. 672 672 */ 673 673 do_action( 'auth_cookie_bad_hash', $cookie_elements ); … … 691 691 * @since 2.7.0 692 692 * 693 * @param array$cookie_elements An array of data for the authentication cookie.694 * @param WP_User $user User object.693 * @param string[] $cookie_elements An array of data for the authentication cookie. 694 * @param WP_User $user User object. 695 695 */ 696 696 do_action( 'auth_cookie_valid', $cookie_elements, $user ); … … 759 759 * @param string $cookie Authentication cookie. 760 760 * @param string $scheme Optional. The cookie scheme to use: 'auth', 'secure_auth', or 'logged_in'. 761 * @return array|false Authentication cookie components.761 * @return string[]|false Authentication cookie components. 762 762 */ 763 763 function wp_parse_auth_cookie( $cookie = '', $scheme = '' ) { … … 1443 1443 * @since 2.3.0 1444 1444 * 1445 * @param array $hosts An array of allowed hosts.1446 * @param bool|string $host The parsed host; empty if not isset.1445 * @param string[] $hosts An array of allowed host names. 1446 * @param string $host The host name of the redirect destination; empty string if not set. 1447 1447 */ 1448 1448 $allowed_hosts = (array) apply_filters( 'allowed_redirect_hosts', array( $wpp['host'] ), isset( $lp['host'] ) ? $lp['host'] : '' ); … … 1493 1493 * @since 3.7.0 1494 1494 * 1495 * @param array$emails An array of email addresses to receive a comment notification.1496 * @param int $comment_id The comment ID.1495 * @param string[] $emails An array of email addresses to receive a comment notification. 1496 * @param int $comment_id The comment ID. 1497 1497 */ 1498 1498 $emails = apply_filters( 'comment_notification_recipients', $emails, $comment->comment_ID ); … … 1805 1805 * @since 3.7.0 1806 1806 * 1807 * @param array$emails List of email addresses to notify for comment moderation.1808 * @param int $comment_id Comment ID.1807 * @param string[] $emails List of email addresses to notify for comment moderation. 1808 * @param int $comment_id Comment ID. 1809 1809 */ 1810 1810 $emails = apply_filters( 'comment_moderation_recipients', $emails, $comment_id );
Note: See TracChangeset
for help on using the changeset viewer.