Automattic\WooCommerce\StoreApi\Routes\V1
Cart::get_route_response()
Handle the request and return a valid response for this endpoint.
Method of the class: Cart{}
No Hooks.
Return
\WP_REST_Response
.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_response( $request );
- $request(\WP_REST_Request) (required)
- Request object.
Cart::get_route_response() Cart::get route response code WC 9.4.2
protected function get_route_response( \WP_REST_Request $request ) { return rest_ensure_response( $this->schema->get_item_response( $this->cart_controller->get_cart_for_response() ) ); }