* @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\Handler; /** * Interface ImportHandlerFinderInterface describes an import handler finder. */ interface ImportHandlerFinderInterface { /** * Find the proper import handler for given entity type. * * @param int $importEntityType * * @return ImportHandlerInterface */ public function find($importEntityType); }