Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/02/2024 01:16:13 AM (12 months ago)
Author:
espellcaste
Message:

WPCS: Part VI: miscellaneous fixes for some of the files of the core component.

Follow-up to [13883], [13886], [13887], [13888], and [13891]

See #9164 and #7228

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-email-address.php

    r12353 r13892  
    33 * Interface for objects that have email address properties (address, name).
    44 *
    5  * @since 5.0.0
     5 * @package BuddyPress
     6 * @subpackage Core
    67 */
    78
     9// Exit if accessed directly.
     10defined( 'ABSPATH' ) || exit;
     11
     12/**
     13 * BP_Email_Address Interface.
     14 *
     15 * @since 2.5.0
     16 */
    817interface BP_Email_Address {
     18
    919    /**
    1020     * Gets the email address of the user.
    1121     *
    1222     * @since 5.0.0
     23     *
     24     * @return string
    1325     */
    1426    public function get_address();
     
    1830     *
    1931     * @since 5.0.0
     32     *
     33     * @return string
    2034     */
    2135    public function get_name();
Note: See TracChangeset for help on using the changeset viewer.