Improve docblock comments in WC_Email_Customer_Completed_Order class
* Added comments to `get_subject`, `get_heading` and `get_content_html` * Added missing param tag to `trigger`
This commit is contained in:
parent
12bf6c5355
commit
db773414a8
|
@ -48,6 +48,8 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
|
|||
|
||||
/**
|
||||
* Trigger.
|
||||
*
|
||||
* @param int $order_id
|
||||
*/
|
||||
function trigger( $order_id ) {
|
||||
|
||||
|
@ -70,7 +72,7 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
|
|||
}
|
||||
|
||||
/**
|
||||
* get_subject function.
|
||||
* Get email subject.
|
||||
*
|
||||
* @access public
|
||||
* @return string
|
||||
|
@ -84,7 +86,7 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
|
|||
}
|
||||
|
||||
/**
|
||||
* get_heading function.
|
||||
* Get email heading.
|
||||
*
|
||||
* @access public
|
||||
* @return string
|
||||
|
@ -98,7 +100,7 @@ class WC_Email_Customer_Completed_Order extends WC_Email {
|
|||
}
|
||||
|
||||
/**
|
||||
* get_content_html function.
|
||||
* Get content html.
|
||||
*
|
||||
* @access public
|
||||
* @return string
|
||||
|
|
Loading…
Reference in New Issue