WP_REST_Controller::prepare_item_for_response PHP Method

prepare_item_for_response() public method

Prepare the item for the REST response.
public prepare_item_for_response ( mixed $item, WP_REST_Request $request ) : WP_REST_Response
$item mixed WordPress representation of the item.
$request WP_REST_Request Request object.
return WP_REST_Response $response
    public function prepare_item_for_response($item, $request)
    {
        return new WP_Error('invalid-method', sprintf(__("Method '%s' not implemented. Must be over-ridden in subclass.", 'woocommerce'), __METHOD__), array('status' => 405));
    }