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