Automattic\WooCommerce\StoreApi\Routes\V1

Cart::get_route_response()protectedWC 1.0

Handle the request and return a valid response for this endpoint.

Метод класса: Cart{}

Хуков нет.

Возвращает

\WP_REST_Response.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_route_response( $request );
$request(\WP_REST_Request) (обязательный)
Request object.

Код Cart::get_route_response() WC 8.7.0

protected function get_route_response( \WP_REST_Request $request ) {
	return rest_ensure_response( $this->schema->get_item_response( $this->cart_controller->get_cart_instance() ) );
}