/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Import
NameSizeModeActions
Access/-0755rm
Configuration/-0755rm
Entity/-0755rm
EntityField/-0755rm
Exception/-0755rm
File/-0755rm
Handler/-0755rm
Sample/-0755rm
Validator/-0755rm
CsvValueSeparatorNormalizer.php15100644editdlrm
Entity.php26440644editdlrm
ImportDirectory.php25920644editdlrm
Importer.php80660644editdlrm
ImporterInterface.php18490644editdlrm
ImportSettings.php18440644editdlrm
StringNormalizerInterface.php14130644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Import/ImporterInterface.php (1849B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Import; use PrestaShop\PrestaShop\Core\Import\Configuration\ImportConfigInterface; use PrestaShop\PrestaShop\Core\Import\Configuration\ImportRuntimeConfigInterface; use PrestaShop\PrestaShop\Core\Import\Handler\ImportHandlerInterface; /** * Interface ImporterInterface describes an import processing unit. */ interface ImporterInterface { /** * Process the import. * * @param ImportConfigInterface $importConfig * @param ImportRuntimeConfigInterface $runtimeConfig * @param ImportHandlerInterface $importHandler */ public function import( ImportConfigInterface $importConfig, ImportRuntimeConfigInterface $runtimeConfig, ImportHandlerInterface $importHandler ); }