WC_REST_Authentication::set_error( WP_Error $error )

Set authentication error.


Description Description


Parameters Parameters

$error

(Required) Authentication error data.


Top ↑

Source Source

File: includes/class-wc-rest-authentication.php

140
141
142
143
144
145
protected function set_error( $error ) {
    // Reset user.
    $this->user = null;
 
    $this->error = $error;
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.