Edit File by line
/home/zeestwma/richards.../wp-conte.../plugins/woocomme.../src/Internal/Admin/Schedule...
File: ImportInterface.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Import related abstract functions.
[2] Fix | Delete
*/
[3] Fix | Delete
[4] Fix | Delete
namespace Automattic\WooCommerce\Internal\Admin\Schedulers;
[5] Fix | Delete
[6] Fix | Delete
interface ImportInterface {
[7] Fix | Delete
/**
[8] Fix | Delete
* Get items based on query and return IDs along with total available.
[9] Fix | Delete
*
[10] Fix | Delete
* @internal
[11] Fix | Delete
* @param int $limit Number of records to retrieve.
[12] Fix | Delete
* @param int $page Page number.
[13] Fix | Delete
* @param int|bool $days Number of days prior to current date to limit search results.
[14] Fix | Delete
* @param bool $skip_existing Skip already imported items.
[15] Fix | Delete
*/
[16] Fix | Delete
public static function get_items( $limit, $page, $days, $skip_existing );
[17] Fix | Delete
[18] Fix | Delete
/**
[19] Fix | Delete
* Get total number of items already imported.
[20] Fix | Delete
*
[21] Fix | Delete
* @internal
[22] Fix | Delete
* @return null
[23] Fix | Delete
*/
[24] Fix | Delete
public static function get_total_imported();
[25] Fix | Delete
[26] Fix | Delete
}
[27] Fix | Delete
[28] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function