Included required methods to the interface

This commit is contained in:
Claudio Sanches 2017-05-18 20:18:46 -03:00
parent ca083c6197
commit 2ba8e27469
1 changed files with 14 additions and 0 deletions

View File

@ -60,4 +60,18 @@ interface WC_Importer_Interface {
* @return array
*/
public function get_parsed_data();
/**
* Get file pointer position from the last read.
*
* @return int
*/
public function get_file_position();
/**
* Get file pointer position as a percentage of file size.
*
* @return int
*/
public function get_percent_complete();
}