Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit cc10491

Browse files
committed
Add @Package and @author tags to each file
1 parent b6bb610 commit cc10491

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

includes/class-wc-custom-order-table-cli.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22
/**
33
* CLI Tool for migrating order data to/from custom table.
4+
*
5+
* @package WooCommerce_Custom_Order_Tables
6+
* @author Liquid Web
47
*/
58

69
class WC_Custom_Order_Table_CLI extends WP_CLI_Command {

includes/class-wc-custom-order-table-install.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
22
/**
33
* Table installation procedure.
4+
*
5+
* @package WooCommerce_Custom_Order_Tables
6+
* @author Liquid Web
47
*/
58

69
class WC_Custom_Order_Table_Install {

includes/class-wc-custom-order-table.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?php
2+
/**
3+
* Core plugin functionality.
4+
*
5+
* @package WooCommerce_Custom_Order_Tables
6+
* @author Liquid Web
7+
*/
28

39
class WC_Custom_Order_Table {
410

includes/class-wc-order-data-store-custom-table.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* WooCommerce order data store.
44
*
55
* Orders are still treated as posts within WordPress, but the data is stored in a separate table.
6+
*
7+
* @package WooCommerce_Custom_Order_Tables
8+
* @author Liquid Web
69
*/
710

811
class WC_Order_Data_Store_Custom_Table extends Abstract_WC_Order_Data_Store_CPT implements WC_Object_Data_Store_Interface, WC_Order_Data_Store_Interface {

wc-custom-order-table.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
*
1212
* WC requires at least: 3.0.0
1313
* WC tested up to: 3.2.6
14+
*
15+
* @package WooCommerce_Custom_Order_Tables
16+
* @author Liquid Web
1417
*/
1518

1619
/* Define constants to use throughout the plugin. */

0 commit comments

Comments
 (0)