Included get_webhooks_ids() to interface

This commit is contained in:
Claudio Sanches 2017-08-17 10:52:42 -03:00
parent dcf3e27155
commit 455888fae4
1 changed files with 7 additions and 0 deletions

View File

@ -25,4 +25,11 @@ interface WC_Webhook_Data_Store_Interface {
* @return int
*/
public function get_api_version_number( $api_version );
/**
* Get all webhooks IDs.
*
* @return int[]
*/
public function get_webhooks_ids();
}