* @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\Configuration; use Symfony\Component\HttpFoundation\Request; /** * Interface ImportRuntimeConfigFactoryInterface describes an import runtime config factory. */ interface ImportRuntimeConfigFactoryInterface { /** * Build runtime config object out of request. * * @param Request $request * * @return ImportRuntimeConfigInterface */ public function buildFromRequest(Request $request); }