@@ -890,7 +890,7 @@ |
||
890 | 890 | * @param int $variation_id |
891 | 891 | * @param array $variation attribute values |
892 | 892 | * @param array $cart_item_data extra cart item data we want to pass into the item |
893 | - * @return string|bool $cart_item_key |
|
893 | + * @return string|false $cart_item_key |
|
894 | 894 | */ |
895 | 895 | public function add_to_cart( $product_id = 0, $quantity = 1, $variation_id = 0, $variation = array(), $cart_item_data = array() ) { |
896 | 896 | // Wrap in try catch so plugins can throw an exception to prevent adding to cart |
@@ -655,7 +655,7 @@ |
||
655 | 655 | * |
656 | 656 | * @access public |
657 | 657 | * @param mixed $item_id |
658 | - * @param mixed $key |
|
658 | + * @param string $key |
|
659 | 659 | * @param bool $single (default: true) |
660 | 660 | * @return mixed |
661 | 661 | */ |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | * Create order. |
461 | 461 | * |
462 | 462 | * @param WP_REST_Request $request Full details about the request. |
463 | - * @return int|WP_Error |
|
463 | + * @return integer |
|
464 | 464 | */ |
465 | 465 | protected function create_order( $request ) { |
466 | 466 | wc_transaction_query( 'start' ); |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | * |
946 | 946 | * @param WP_REST_Request $request Full details about the request. |
947 | 947 | * @param WP_Post $post Post data. |
948 | - * @return int|WP_Error |
|
948 | + * @return integer |
|
949 | 949 | */ |
950 | 950 | protected function update_order( $request, $post ) { |
951 | 951 | try { |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * |
56 | 56 | * @param array $args |
57 | 57 | * |
58 | - * @return WC_Order|WP_Error WC_Order on success, WP_Error on failure. |
|
58 | + * @return WC_Order WC_Order on success, WP_Error on failure. |
|
59 | 59 | */ |
60 | 60 | function wc_create_order( $args = array() ) { |
61 | 61 | $default_args = array( |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * WC_TEMPLATE_DEBUG_MODE will prevent overrides in themes from taking priority. |
146 | 146 | * |
147 | 147 | * @access public |
148 | - * @param mixed $slug |
|
148 | + * @param string $slug |
|
149 | 149 | * @param string $name (default: '') |
150 | 150 | */ |
151 | 151 | function wc_get_template_part( $slug, $name = '' ) { |