Automattic\WooCommerce\StoreApi\Routes\V1
CartExtensions::get_route_post_response
Handle the request and return a valid response for this endpoint.
Method of the class: CartExtensions{}
No Hooks.
Returns
\WP_REST_Response.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_post_response( $request );
- $request(WP_REST_Request) (required)
- Request object.
CartExtensions::get_route_post_response() CartExtensions::get route post response code WC 10.5.0
protected function get_route_post_response( \WP_REST_Request $request ) {
try {
return $this->schema->get_item_response( $request );
} catch ( \WC_REST_Exception $e ) {
throw new RouteException( $e->getErrorCode(), $e->getMessage(), $e->getCode() );
}
}