Automattic\WooCommerce\Blocks\StoreApi\Routes
Cart::get_route_response() protected WC 1.0
Handle the request and return a valid response for this endpoint.
{} Это метод класса: Cart{}
Хуков нет.
Возвращает
\WP_REST_Response
. Ничего.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_route_response( \WP_REST_Request $request );
- \WP_REST_Request $request (обязательный)
- -
Код Cart::get_route_response() Cart::get route response WC 5.2.2
protected function get_route_response( \WP_REST_Request $request ) {
return rest_ensure_response( $this->schema->get_item_response( $this->cart_controller->get_cart_instance() ) );
}