10 lines
208 B
PHP
10 lines
208 B
PHP
<?php
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
interface IProductSync
|
|
{
|
|
public function importProducts(int $perPage = 100): array;
|
|
public function importSingleProduct(array $productData): bool;
|
|
}
|