* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\Module\PsxDesign\Handler; use PrestaShop\Module\PsxDesign\DTO\PsxDesignLogoData; if (!defined('_PS_VERSION_')) { exit; } interface LogoUploaderInterface { /** * @param PsxDesignLogoData $logoData * @param string $uploadType * * @return string */ public function uploadLogo(PsxDesignLogoData $logoData, string $uploadType): string; }