From ace978691401af09bea34dd0ee716a49822ef4e3 Mon Sep 17 00:00:00 2001 From: Saggre Date: Tue, 1 Feb 2022 17:06:58 +0200 Subject: [PATCH] Fix typos in phpdocs and comments --- .../includes/abstracts/abstract-wc-order.php | 6 +++--- .../abstracts/abstract-wc-payment-gateway.php | 2 +- .../includes/admin/class-wc-admin-notices.php | 2 +- .../admin/class-wc-admin-webhooks-table-list.php | 2 +- .../includes/admin/class-wc-admin.php | 2 +- .../includes/admin/helper/class-wc-helper.php | 2 +- .../class-wc-product-csv-importer-controller.php | 2 +- .../class-wc-admin-list-table-coupons.php | 16 ++++++++-------- .../class-wc-admin-list-table-orders.php | 14 +++++++------- .../class-wc-marketplace-updater.php | 2 +- .../reports/class-wc-report-sales-by-date.php | 4 ++-- .../reports/class-wc-report-taxes-by-date.php | 2 +- .../admin/settings/class-wc-settings-page.php | 2 +- .../admin/settings/class-wc-settings-tax.php | 2 +- plugins/woocommerce/includes/class-wc-api.php | 2 +- .../includes/class-wc-cart-totals.php | 4 ++-- plugins/woocommerce/includes/class-wc-cart.php | 2 +- plugins/woocommerce/includes/class-wc-coupon.php | 2 +- .../woocommerce/includes/class-wc-discounts.php | 2 +- plugins/woocommerce/includes/class-wc-logger.php | 2 +- .../includes/class-wc-privacy-erasers.php | 8 ++++---- .../woocommerce/includes/class-wc-privacy.php | 2 +- .../includes/class-wc-session-handler.php | 2 +- plugins/woocommerce/includes/class-wc-tax.php | 4 ++-- .../class-wc-customer-download-data-store.php | 2 +- .../class-wc-shipping-zone-data-store.php | 2 +- .../import/class-wc-product-csv-importer.php | 2 +- ...ass-wc-shipping-zone-data-store-interface.php | 2 +- .../includes/legacy/class-wc-legacy-api.php | 4 ++-- .../includes/queue/class-wc-action-queue.php | 2 +- .../class-wc-rest-data-continents-controller.php | 2 +- .../class-wc-rest-data-countries-controller.php | 2 +- .../woocommerce/includes/rest-api/Package.php | 2 +- .../class-wc-shipping-legacy-flat-rate.php | 2 +- .../includes/tracks/class-wc-tracks-client.php | 4 ++-- .../includes/wc-attribute-functions.php | 2 +- .../woocommerce/includes/wc-cart-functions.php | 2 +- .../woocommerce/includes/wc-rest-functions.php | 2 +- .../woocommerce/includes/wc-stock-functions.php | 2 +- .../includes/wc-template-functions.php | 10 +++++----- 40 files changed, 67 insertions(+), 67 deletions(-) diff --git a/plugins/woocommerce/includes/abstracts/abstract-wc-order.php b/plugins/woocommerce/includes/abstracts/abstract-wc-order.php index a534fba5af3..e2a26ae1ca5 100644 --- a/plugins/woocommerce/includes/abstracts/abstract-wc-order.php +++ b/plugins/woocommerce/includes/abstracts/abstract-wc-order.php @@ -877,7 +877,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order { * * @since 3.0.0 * @param int $item_id ID of item to get. - * @param bool $load_from_db Prior to 3.2 this item was loaded direct from WC_Order_Factory, not this object. This param is here for backwards compatility with that. If false, uses the local items variable instead. + * @param bool $load_from_db Prior to 3.2 this item was loaded direct from WC_Order_Factory, not this object. This param is here for backwards compatibility with that. If false, uses the local items variable instead. * @return WC_Order_Item|false */ public function get_item( $item_id, $load_from_db = true ) { @@ -1139,7 +1139,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order { $data_store = $coupon->get_data_store(); - // Check specific for guest checkouts here as well since WC_Cart handles that seperately in check_customer_coupons. + // Check specific for guest checkouts here as well since WC_Cart handles that separately in check_customer_coupons. if ( $data_store && 0 === $this->get_customer_id() ) { $usage_count = $data_store->get_usage_by_email( $coupon, $this->get_billing_email() ); if ( 0 < $coupon->get_usage_limit_per_user() && $usage_count >= $coupon->get_usage_limit_per_user() ) { @@ -1251,7 +1251,7 @@ abstract class WC_Abstract_Order extends WC_Abstract_Legacy_Order { } /** - * Allow developers to filter this coupon before it get's re-applied to the order. + * Allow developers to filter this coupon before it gets re-applied to the order. * * @since 3.2.0 */ diff --git a/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php b/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php index 3dcc281464d..065d8d5bedd 100644 --- a/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php +++ b/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php @@ -2,7 +2,7 @@ /** * Abstract payment gateway * - * Hanldes generic payment gateway functionality which is extended by idividual payment gateways. + * Handles generic payment gateway functionality which is extended by individual payment gateways. * * @class WC_Payment_Gateway * @version 2.1.0 diff --git a/plugins/woocommerce/includes/admin/class-wc-admin-notices.php b/plugins/woocommerce/includes/admin/class-wc-admin-notices.php index 8aeb50c495d..f3aa7448a55 100644 --- a/plugins/woocommerce/includes/admin/class-wc-admin-notices.php +++ b/plugins/woocommerce/includes/admin/class-wc-admin-notices.php @@ -432,7 +432,7 @@ class WC_Admin_Notices { * @since 3.6.0 */ public static function regenerating_lookup_table_notice() { - // See if this is still relevent. + // See if this is still relevant. if ( ! wc_update_product_lookup_tables_is_running() ) { self::remove_notice( 'regenerating_lookup_table' ); return; diff --git a/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php b/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php index d2c6ea5bbc1..c9fcdaf90c2 100644 --- a/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php +++ b/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php @@ -13,7 +13,7 @@ if ( ! class_exists( 'WP_List_Table' ) ) { } /** - * Webooks table list class. + * Webhooks table list class. */ class WC_Admin_Webhooks_Table_List extends WP_List_Table { diff --git a/plugins/woocommerce/includes/admin/class-wc-admin.php b/plugins/woocommerce/includes/admin/class-wc-admin.php index 3785f3c43f8..a8e38be1671 100644 --- a/plugins/woocommerce/includes/admin/class-wc-admin.php +++ b/plugins/woocommerce/includes/admin/class-wc-admin.php @@ -275,7 +275,7 @@ class WC_Admin { * * @since 3.6.2 * - * @param array $args Scehduled action post type registration args. + * @param array $args Scheduled action post type registration args. * * @return array */ diff --git a/plugins/woocommerce/includes/admin/helper/class-wc-helper.php b/plugins/woocommerce/includes/admin/helper/class-wc-helper.php index 6fb43c27fa2..ae9afbf0a6f 100644 --- a/plugins/woocommerce/includes/admin/helper/class-wc-helper.php +++ b/plugins/woocommerce/includes/admin/helper/class-wc-helper.php @@ -1154,7 +1154,7 @@ class WC_Helper { /** * Check if plugins have WC headers, if not then clear cache and fetch again. * WC Headers will not be present if `wc_enable_wc_plugin_headers` hook was added after a `get_plugins` call -- for example when WC is activated/updated. - * Also, get_plugins call is expensive so we should clear this cache very conservatively. + * Also, get_plugins call is expensive, so we should clear this cache very conservatively. */ if ( ! empty( $plugins ) && ! array_key_exists( 'Woo', current( $plugins ) ) ) { wp_clean_plugins_cache( false ); diff --git a/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php b/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php index b467d8f9f6d..9e061466a92 100644 --- a/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php +++ b/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php @@ -608,7 +608,7 @@ class WC_Product_CSV_Importer_Controller { } /** - * Map columns using the user's lastest import mappings. + * Map columns using the user's latest import mappings. * * @param array $headers Header columns. * @return array diff --git a/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php b/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php index 91f499abef3..c5398e542b8 100644 --- a/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php +++ b/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php @@ -105,7 +105,7 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: coupon_code. + * Render column: coupon_code. */ protected function render_coupon_code_column() { global $post; @@ -119,20 +119,20 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: type. + * Render column: type. */ protected function render_type_column() { echo esc_html( wc_get_coupon_type( $this->object->get_discount_type() ) ); } /** - * Render columm: amount. + * Render column: amount. */ protected function render_amount_column() { echo esc_html( wc_format_localized_price( $this->object->get_amount() ) ); } /** - * Render columm: products. + * Render column: products. */ protected function render_products_column() { $product_ids = $this->object->get_product_ids(); @@ -145,7 +145,7 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: usage_limit. + * Render column: usage_limit. */ protected function render_usage_limit_column() { $usage_limit = $this->object->get_usage_limit(); @@ -158,7 +158,7 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: usage. + * Render column: usage. */ protected function render_usage_column() { $usage_count = $this->object->get_usage_count(); @@ -173,7 +173,7 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: expiry_date. + * Render column: expiry_date. */ protected function render_expiry_date_column() { $expiry_date = $this->object->get_date_expires(); @@ -186,7 +186,7 @@ class WC_Admin_List_Table_Coupons extends WC_Admin_List_Table { } /** - * Render columm: description. + * Render column: description. */ protected function render_description_column() { echo wp_kses_post( $this->object->get_description() ? $this->object->get_description() : '–' ); diff --git a/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php b/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php index 6c604088976..f07ceb266e0 100644 --- a/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php +++ b/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php @@ -169,7 +169,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: order_number. + * Render column: order_number. */ protected function render_order_number_column() { $buyer = ''; @@ -202,7 +202,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: order_status. + * Render column: order_status. */ protected function render_order_status_column() { $tooltip = ''; @@ -239,7 +239,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: order_date. + * Render column: order_date. */ protected function render_order_date_column() { $order_timestamp = $this->object->get_date_created() ? $this->object->get_date_created()->getTimestamp() : ''; @@ -268,7 +268,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: order_total. + * Render column: order_total. */ protected function render_order_total_column() { if ( $this->object->get_payment_method_title() ) { @@ -280,7 +280,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: wc_actions. + * Render column: wc_actions. */ protected function render_wc_actions_column() { echo '

'; @@ -315,7 +315,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: billing_address. + * Render column: billing_address. */ protected function render_billing_address_column() { $address = $this->object->get_formatted_billing_address(); @@ -333,7 +333,7 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table { } /** - * Render columm: shipping_address. + * Render column: shipping_address. */ protected function render_shipping_address_column() { $address = $this->object->get_formatted_shipping_address(); diff --git a/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php b/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php index 3384cd26eba..175783a9827 100644 --- a/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php +++ b/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php @@ -68,7 +68,7 @@ class WC_Marketplace_Updater { } /** - * Used when an error has occured when fetching suggestions. + * Used when an error has occurred when fetching suggestions. * Re-schedules the job earlier than the main weekly one. */ public static function retry() { diff --git a/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php b/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php index 280aa359595..709bc465fc2 100644 --- a/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php +++ b/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php @@ -411,7 +411,7 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { $this->report_data->total_shipping_tax_refunded += floatval( $value->total_shipping_tax < 0 ? $value->total_shipping_tax * -1 : $value->total_shipping_tax ); $this->report_data->total_shipping_refunded += floatval( $value->total_shipping < 0 ? $value->total_shipping * -1 : $value->total_shipping ); - // Only applies to parial. + // Only applies to partial. if ( isset( $value->order_item_count ) ) { $this->report_data->refunded_order_items += floatval( $value->order_item_count < 0 ? $value->order_item_count * -1 : $value->order_item_count ); } @@ -422,7 +422,7 @@ class WC_Report_Sales_By_Date extends WC_Admin_Report { $this->report_data->total_shipping = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_shipping' ) ) - $this->report_data->total_shipping_refunded, 2 ); $this->report_data->total_shipping_tax = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_shipping_tax' ) ) - $this->report_data->total_shipping_tax_refunded, 2 ); - // Total the refunds and sales amounts. Sales subract refunds. Note - total_sales also includes shipping costs. + // Total the refunds and sales amounts. Sales subtract refunds. Note - total_sales also includes shipping costs. $this->report_data->total_sales = wc_format_decimal( array_sum( wp_list_pluck( $this->report_data->orders, 'total_sales' ) ) - $this->report_data->total_refunds, 2 ); $this->report_data->net_sales = wc_format_decimal( $this->report_data->total_sales - $this->report_data->total_shipping - max( 0, $this->report_data->total_tax ) - max( 0, $this->report_data->total_shipping_tax ), 2 ); diff --git a/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php b/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php index 37328325bda..b915d155963 100644 --- a/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php +++ b/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php @@ -104,7 +104,7 @@ class WC_Report_Taxes_By_Date extends WC_Admin_Report { ), ); - // We exlude on-hold orders are they are still pending payment. + // We exclude on-hold orders are they are still pending payment. $tax_rows_orders = $this->get_order_report_data( array( 'data' => $query_data, diff --git a/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php b/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php index f77976e0df5..86fa45a4c8a 100644 --- a/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php +++ b/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php @@ -64,7 +64,7 @@ if ( ! class_exists( 'WC_Settings_Page', false ) ) : /** * Add this page to settings. * - * @param array $pages The setings array where we'll add ourselves. + * @param array $pages The settings array where we'll add ourselves. * * @return mixed */ diff --git a/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php b/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php index f576a345b51..aba23cee9d3 100644 --- a/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php +++ b/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php @@ -309,7 +309,7 @@ class WC_Settings_Tax extends WC_Settings_Page { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotValidated, WordPress.Security.NonceVerification.Missing $posted_countries = wc_clean( wp_unslash( $_POST['tax_rate_country'] ) ); - // get the tax rate id of the first submited row. + // get the tax rate id of the first submitted row. $first_tax_rate_id = key( $posted_countries ); // get the order position of the first tax rate id. diff --git a/plugins/woocommerce/includes/class-wc-api.php b/plugins/woocommerce/includes/class-wc-api.php index 3f801e7e84c..da731386a44 100644 --- a/plugins/woocommerce/includes/class-wc-api.php +++ b/plugins/woocommerce/includes/class-wc-api.php @@ -83,7 +83,7 @@ class WC_API extends WC_Legacy_API { * * @since 3.7.0 * @param string $endpoint Endpoint. - * @param array $params Params to passwith request. + * @param array $params Params to pass with request. * @return array|\WP_Error */ public function get_endpoint_data( $endpoint, $params = array() ) { diff --git a/plugins/woocommerce/includes/class-wc-cart-totals.php b/plugins/woocommerce/includes/class-wc-cart-totals.php index 87464c756a7..2f54ee12a3f 100644 --- a/plugins/woocommerce/includes/class-wc-cart-totals.php +++ b/plugins/woocommerce/includes/class-wc-cart-totals.php @@ -422,7 +422,7 @@ final class WC_Cart_Totals { } else { /** * If we want all customers to pay the same price on this store, we should not remove base taxes from a VAT exempt user's price, - * but just the relevent tax rate. See issue #20911. + * but just the relevant tax rate. See issue #20911. */ $base_tax_rates = $item->tax_rates; } @@ -864,7 +864,7 @@ final class WC_Cart_Totals { protected function calculate_totals() { $this->set_total( 'total', NumberUtil::round( $this->get_total( 'items_total', true ) + $this->get_total( 'fees_total', true ) + $this->get_total( 'shipping_total', true ) + array_sum( $this->get_merged_taxes( true ) ), 0 ) ); $items_tax = array_sum( $this->get_merged_taxes( false, array( 'items' ) ) ); - // Shipping and fee taxes are rounded seperately because they were entered excluding taxes (as opposed to item prices, which may or may not be including taxes depending upon settings). + // Shipping and fee taxes are rounded separately because they were entered excluding taxes (as opposed to item prices, which may or may not be including taxes depending upon settings). $shipping_and_fee_taxes = NumberUtil::round( array_sum( $this->get_merged_taxes( false, array( 'fees', 'shipping' ) ) ), wc_get_price_decimals() ); $this->cart->set_total_tax( $items_tax + $shipping_and_fee_taxes ); diff --git a/plugins/woocommerce/includes/class-wc-cart.php b/plugins/woocommerce/includes/class-wc-cart.php index 42a5f5716cb..37c3810eea6 100644 --- a/plugins/woocommerce/includes/class-wc-cart.php +++ b/plugins/woocommerce/includes/class-wc-cart.php @@ -626,7 +626,7 @@ class WC_Cart extends WC_Legacy_Cart { /** * Empties the cart and optionally the persistent cart too. * - * @param bool $clear_persistent_cart Should the persistant cart be cleared too. Defaults to true. + * @param bool $clear_persistent_cart Should the persistent cart be cleared too. Defaults to true. */ public function empty_cart( $clear_persistent_cart = true ) { diff --git a/plugins/woocommerce/includes/class-wc-coupon.php b/plugins/woocommerce/includes/class-wc-coupon.php index 66745fc8f08..d2480b8e751 100644 --- a/plugins/woocommerce/includes/class-wc-coupon.php +++ b/plugins/woocommerce/includes/class-wc-coupon.php @@ -263,7 +263,7 @@ class WC_Coupon extends WC_Legacy_Coupon { } /** - * Get the "indvidual use" checkbox status. + * Get the "individual use" checkbox status. * * @since 3.0.0 * @param string $context What the value is for. Valid values are 'view' and 'edit'. diff --git a/plugins/woocommerce/includes/class-wc-discounts.php b/plugins/woocommerce/includes/class-wc-discounts.php index 8b2c5b4aabc..63ff52691cb 100644 --- a/plugins/woocommerce/includes/class-wc-discounts.php +++ b/plugins/woocommerce/includes/class-wc-discounts.php @@ -540,7 +540,7 @@ class WC_Discounts { * until the amount is expired, discounting 1 cent at a time. * * @since 3.2.0 - * @param WC_Coupon $coupon Coupon object if appliable. Passed through filters. + * @param WC_Coupon $coupon Coupon object if applicable. Passed through filters. * @param array $items_to_apply Array of items to apply the coupon to. * @param int $amount Fixed discount amount to apply. * @return int Total discounted. diff --git a/plugins/woocommerce/includes/class-wc-logger.php b/plugins/woocommerce/includes/class-wc-logger.php index fed86dea651..2febfea1cb6 100644 --- a/plugins/woocommerce/includes/class-wc-logger.php +++ b/plugins/woocommerce/includes/class-wc-logger.php @@ -143,7 +143,7 @@ class WC_Logger implements WC_Logger_Interface { foreach ( $this->handlers as $handler ) { /** - * Filter the logging message. Returning null will prevent logging from occuring since 5.3. + * Filter the logging message. Returning null will prevent logging from occurring since 5.3. * * @since 3.1 * @param string $message Log message. diff --git a/plugins/woocommerce/includes/class-wc-privacy-erasers.php b/plugins/woocommerce/includes/class-wc-privacy-erasers.php index 6e08c4e82e7..69cba905dce 100644 --- a/plugins/woocommerce/includes/class-wc-privacy-erasers.php +++ b/plugins/woocommerce/includes/class-wc-privacy-erasers.php @@ -95,14 +95,14 @@ class WC_Privacy_Erasers { * Allow extensions to remove data for this customer and adjust the response. * * @since 3.4.0 - * @param array $response Array resonse data. Must include messages, num_items_removed, num_items_retained, done. + * @param array $response Array response data. Must include messages, num_items_removed, num_items_retained, done. * @param WC_Order $order A customer object. */ return apply_filters( 'woocommerce_privacy_erase_personal_data_customer', $response, $customer ); } /** - * Finds and erases data which could be used to identify a person from WooCommerce data assocated with an email address. + * Finds and erases data which could be used to identify a person from WooCommerce data associated with an email address. * * Orders are erased in blocks of 10 to avoid timeouts. * @@ -350,7 +350,7 @@ class WC_Privacy_Erasers { wc_delete_order_note( $note->id ); } - // Add note that this event occured. + // Add note that this event occurred. $order->add_order_note( __( 'Personal data removed.', 'woocommerce' ) ); /** @@ -406,7 +406,7 @@ class WC_Privacy_Erasers { * Allow extensions to remove data for tokens and adjust the response. * * @since 3.4.0 - * @param array $response Array resonse data. Must include messages, num_items_removed, num_items_retained, done. + * @param array $response Array response data. Must include messages, num_items_removed, num_items_retained, done. * @param array $tokens Array of tokens. */ return apply_filters( 'woocommerce_privacy_erase_personal_data_tokens', $response, $tokens ); diff --git a/plugins/woocommerce/includes/class-wc-privacy.php b/plugins/woocommerce/includes/class-wc-privacy.php index f25c15b26e3..62ca93f7281 100644 --- a/plugins/woocommerce/includes/class-wc-privacy.php +++ b/plugins/woocommerce/includes/class-wc-privacy.php @@ -36,7 +36,7 @@ class WC_Privacy extends WC_Abstract_Privacy { // Cleanup orders daily - this is a callback on a daily cron event. add_action( 'woocommerce_cleanup_personal_data', array( $this, 'queue_cleanup_personal_data' ) ); - // Handles custom anonomization types not included in core. + // Handles custom anonymization types not included in core. add_filter( 'wp_privacy_anonymize_data', array( $this, 'anonymize_custom_data_types' ), 10, 3 ); // When this is fired, data is removed in a given order. Called from bulk actions. diff --git a/plugins/woocommerce/includes/class-wc-session-handler.php b/plugins/woocommerce/includes/class-wc-session-handler.php index 0c6dda12484..faaecf32e4a 100644 --- a/plugins/woocommerce/includes/class-wc-session-handler.php +++ b/plugins/woocommerce/includes/class-wc-session-handler.php @@ -350,7 +350,7 @@ class WC_Session_Handler extends WC_Session { /** * Returns the session. * - * @param string $customer_id Custo ID. + * @param string $customer_id Customer ID. * @param mixed $default Default session value. * @return string|array */ diff --git a/plugins/woocommerce/includes/class-wc-tax.php b/plugins/woocommerce/includes/class-wc-tax.php index a59f60cc4de..9cb4c67037a 100644 --- a/plugins/woocommerce/includes/class-wc-tax.php +++ b/plugins/woocommerce/includes/class-wc-tax.php @@ -485,7 +485,7 @@ class WC_Tax { } /** - * Get's an arrau of matching rates from location and tax class. $customer parameter is used to preserve backward compatibility for filter. + * Get's an array of matching rates from location and tax class. $customer parameter is used to preserve backward compatibility for filter. * * @param string $tax_class Tax class to get rates for. * @param array $location Location to compute rates for. Should be in form: array( country, state, postcode, city). @@ -1224,7 +1224,7 @@ class WC_Tax { // Drop the locations into the rates array. foreach ( $locations as $location ) { - // Don't set them for unexistent rates. + // Don't set them for nonexistent rates. if ( ! isset( $rates[ $location->tax_rate_id ] ) ) { continue; } diff --git a/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php b/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php index f715fc6d3cb..c28a0826780 100644 --- a/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php +++ b/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php @@ -348,7 +348,7 @@ class WC_Customer_Download_Data_Store implements WC_Customer_Download_Data_Store /** * Get array of download ids by specified args. * - * @param array $args Arguments to filter downloads. $args['return'] accepts the following values: 'objects' (default), 'ids' or a comma separeted list of fields (for example: 'order_id,user_id,user_email'). + * @param array $args Arguments to filter downloads. $args['return'] accepts the following values: 'objects' (default), 'ids' or a comma separated list of fields (for example: 'order_id,user_id,user_email'). * @return array Can be an array of permission_ids, an array of WC_Customer_Download objects or an array of arrays containing specified fields depending on the value of $args['return']. */ public function get_downloads( $args = array() ) { diff --git a/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php b/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php index fe9c54d2159..6d795611651 100644 --- a/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php +++ b/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php @@ -310,7 +310,7 @@ class WC_Shipping_Zone_Data_Store extends WC_Data_Store_WP implements WC_Shippin * Return a zone ID from an instance ID. * * @since 3.0.0 - * @param int $id Instnace ID. + * @param int $id Instance ID. * @return int */ public function get_zone_id_by_instance_id( $id ) { diff --git a/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php b/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php index 78d65f789bb..31a97d379ea 100644 --- a/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php +++ b/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php @@ -606,7 +606,7 @@ class WC_Product_CSV_Importer extends WC_Product_Importer { /** * Parse download file urls, we should allow shortcodes here. * - * Allow shortcodes if present, othersiwe esc_url the value. + * Allow shortcodes if present, otherwise esc_url the value. * * @param string $value Field value. * diff --git a/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php b/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php index 031e4048b3e..65d7243e2c7 100644 --- a/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php +++ b/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php @@ -44,7 +44,7 @@ interface WC_Shipping_Zone_Data_Store_Interface { /** * Delete a method instance. * - * @param int $instance_id Intance ID. + * @param int $instance_id Instance ID. */ public function delete_method( $instance_id ); diff --git a/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php b/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php index 5c86c6b9800..e0ae2afdd8e 100644 --- a/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php +++ b/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php @@ -274,14 +274,14 @@ class WC_Legacy_API { /** * Rest API Init. * - * @deprecated 3.7.0 - REST API clases autoload. + * @deprecated 3.7.0 - REST API classes autoload. */ public function rest_api_init() {} /** * Include REST API classes. * - * @deprecated 3.7.0 - REST API clases autoload. + * @deprecated 3.7.0 - REST API classes autoload. */ public function rest_api_includes() { $this->rest_api_init(); diff --git a/plugins/woocommerce/includes/queue/class-wc-action-queue.php b/plugins/woocommerce/includes/queue/class-wc-action-queue.php index 88bccaeceef..069e27053dc 100644 --- a/plugins/woocommerce/includes/queue/class-wc-action-queue.php +++ b/plugins/woocommerce/includes/queue/class-wc-action-queue.php @@ -114,7 +114,7 @@ class WC_Action_Queue implements WC_Queue_Interface { } /** - * Get the date and time for the next scheduled occurence of an action with a given hook + * Get the date and time for the next scheduled occurrence of an action with a given hook * (an optionally that matches certain args and group), if any. * * @param string $hook The hook that the job will trigger. diff --git a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php index f998271969e..357777dcf39 100644 --- a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php +++ b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php @@ -210,7 +210,7 @@ class WC_REST_Data_Continents_Controller extends WC_REST_Data_Controller { /** * Filter the location list returned from the API. * - * Allows modification of the loction data right before it is returned. + * Allows modification of the location data right before it is returned. * * @param WP_REST_Response $response The response object. * @param array $item The original list of continent(s), countries, and states. diff --git a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php index 7144e5f79a9..b9783bc2d38 100644 --- a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php +++ b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-countries-controller.php @@ -157,7 +157,7 @@ class WC_REST_Data_Countries_Controller extends WC_REST_Data_Controller { /** * Filter the states list for a country returned from the API. * - * Allows modification of the loction data right before it is returned. + * Allows modification of the location data right before it is returned. * * @param WP_REST_Response $response The response object. * @param array $data The original country's states list. diff --git a/plugins/woocommerce/includes/rest-api/Package.php b/plugins/woocommerce/includes/rest-api/Package.php index 4d67524e719..0bb8b7ca4e2 100644 --- a/plugins/woocommerce/includes/rest-api/Package.php +++ b/plugins/woocommerce/includes/rest-api/Package.php @@ -1,6 +1,6 @@ get_image( $image_size, $attr, $placeholder ) : '';