Add PHPCS ignore missing hook comment

This commit is contained in:
Shadi Manna 2023-04-20 15:50:02 +02:00
parent f7bd95901b
commit 71fbc5fb59
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ if ( ! class_exists( 'WC_Email_New_Order' ) ) :
* @return string
*/
public function get_additional_content() {
return apply_filters( 'woocommerce_email_additional_content_' . $this->id, $this->format_string( $this->get_option( 'additional_content' ) ), $this->object, $this );
return apply_filters( 'woocommerce_email_additional_content_' . $this->id, $this->format_string( $this->get_option( 'additional_content' ) ), $this->object, $this ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment
}
/**