Skip to content

Commit

Permalink
Merge pull request woocommerce#27239 from woocommerce/fix/package-tag
Browse files Browse the repository at this point in the history
Fix usage of "package" tag in file headers
  • Loading branch information
claudiosanches authored Aug 7, 2020
2 parents 2f9de7a + 17f9883 commit 02cf0df
Show file tree
Hide file tree
Showing 539 changed files with 548 additions and 586 deletions.
2 changes: 1 addition & 1 deletion i18n/continents.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Returns an array of continents.
*
* @package WooCommerce/i18n
* @package WooCommerce\i18n
* @version 2.5.0
*/

Expand Down
2 changes: 1 addition & 1 deletion i18n/locale-info.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Locales information
*
* @package WooCommerce/i18n
* @package WooCommerce\i18n
* @version 3.5.0
*/

Expand Down
2 changes: 1 addition & 1 deletion i18n/phone.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Returns an array of calling codes.
*
* @package WooCommerce/i18n
* @package WooCommerce\i18n
*/

defined( 'ABSPATH' ) || exit;
Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-data.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @class WC_Data
* @version 3.0.0
* @package WooCommerce/Classes
* @package WooCommerce\Classes
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -20,7 +20,7 @@
* Implemented by classes using the same CRUD(s) pattern.
*
* @version 2.6.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Data {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @class WC_Settings_API
* @version 2.6.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -22,7 +22,7 @@
* @class WC_Integration
* @extends WC_Settings_API
* @version 2.6.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Integration extends WC_Settings_API {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-log-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Log handling functionality.
*
* @class WC_Log_Handler
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -14,7 +14,7 @@
* Abstract WC Log Handler Class
*
* @version 1.0.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Log_Handler implements WC_Log_Handler_Interface {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-object-query.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Query abstraction layer functionality.
*
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -15,7 +15,7 @@
* Extended by classes to provide a query abstraction layer for safe object searching.
*
* @version 3.1.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Object_Query {

Expand Down
2 changes: 1 addition & 1 deletion includes/abstracts/abstract-wc-order.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @class WC_Abstract_Order
* @version 3.0.0
* @package WooCommerce/Classes
* @package WooCommerce\Classes
*/

defined( 'ABSPATH' ) || exit;
Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-payment-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @class WC_Payment_Gateway
* @version 2.1.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

use Automattic\Jetpack\Constants;
Expand All @@ -23,7 +23,7 @@
* @class WC_Payment_Gateway
* @extends WC_Settings_API
* @version 2.1.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Payment_Gateway extends WC_Settings_API {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-payment-token.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Generic payment tokens functionality which can be extended by idividual types of payment tokens.
*
* @class WC_Payment_Token
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -23,7 +23,7 @@
* @class WC_Payment_Token
* @version 3.0.0
* @since 2.6.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Payment_Token extends WC_Legacy_Payment_Token {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-privacy.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* WooCommerce abstract privacy class.
*
* @since 3.4.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

defined( 'ABSPATH' ) || exit;
Expand All @@ -15,7 +15,7 @@
* privacy data to be exported and privacy data to be deleted.
*
* @version 3.4.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Abstract_Privacy {
/**
Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* WooCommerce product base class.
*
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -21,7 +21,7 @@
* The WooCommerce product class handles individual product data.
*
* @version 3.0.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
class WC_Product extends WC_Abstract_Legacy_Product {

Expand Down
2 changes: 1 addition & 1 deletion includes/abstracts/abstract-wc-session.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @class WC_Session
* @version 2.0.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion includes/abstracts/abstract-wc-settings-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Admin Settings API used by Integrations, Shipping Methods, and Payment Gateways.
*
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

defined( 'ABSPATH' ) || exit;
Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-shipping-method.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Abstract shipping method
*
* @class WC_Shipping_Method
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

if ( ! defined( 'ABSPATH' ) ) {
Expand All @@ -17,7 +17,7 @@
*
* @class WC_Shipping_Method
* @version 3.0.0
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/
abstract class WC_Shipping_Method extends WC_Settings_API {

Expand Down
4 changes: 2 additions & 2 deletions includes/abstracts/abstract-wc-widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Abstract widget class
*
* @class WC_Widget
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
*/

use Automattic\Jetpack\Constants;
Expand All @@ -15,7 +15,7 @@
/**
* WC_Widget
*
* @package WooCommerce/Abstracts
* @package WooCommerce\Abstracts
* @version 2.5.0
* @extends WP_Widget
*/
Expand Down
2 changes: 1 addition & 1 deletion includes/abstracts/class-wc-background-process.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Uses https://github.com/A5hleyRich/wp-background-processing to handle DB
* updates in the background.
*
* @package WooCommerce/Classes
* @package WooCommerce\Classes
*/

defined( 'ABSPATH' ) || exit;
Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-addons.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Addons Page
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.5.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Load assets
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 3.7.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-attributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* The attributes section lets users add custom attributes to assign to products - they can also be used in the "Filter Products by Attribute" widget.
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.3.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-customize.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author WooCommerce
* @category Admin
* @package WooCommerce/Admin/Customize
* @package WooCommerce\Admin\Customize
* @version 3.1.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Admin Dashboard
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.1.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-duplicate-product.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Duplicate product functionality
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 3.0.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-exporters.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Init WooCommerce data exporters.
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 3.1.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-help.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Add some content to the help tab
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.1.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-importers.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Init WooCommerce data importers.
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
*/

use Automattic\Jetpack\Constants;
Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-log-table-list.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 1.0.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-meta-boxes.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sets up the write panels used by products and orders (custom post types).
*
* @package WooCommerce/Admin/Meta Boxes
* @package WooCommerce\Admin\Meta Boxes
*/

use Automattic\Jetpack\Constants;
Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-permalink-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @class WC_Admin_Permalink_Settings
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.3.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-pointers.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.4.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-post-types.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Post Types Admin
*
* @package WooCommerce/admin
* @package WooCommerce\Admin
* @version 3.3.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 2.4.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-reports.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Reports
* @package WooCommerce\Admin\Reports
* @version 2.0.0
*/

Expand Down
2 changes: 1 addition & 1 deletion includes/admin/class-wc-admin-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* WooCommerce Admin Settings Class
*
* @package WooCommerce/Admin
* @package WooCommerce\Admin
* @version 3.4.0
*/

Expand Down
Loading

0 comments on commit 02cf0df

Please sign in to comment.