* @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\Domain\Currency\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Currency\Query\GetCurrencyForEditing; /** * Interface GetCurrencyForEditingHandlerInterface defines contract for GetCurrencyForFormEditingHandler. */ interface GetCurrencyForEditingHandlerInterface { /** * @param GetCurrencyForEditing $query * * @return \PrestaShop\PrestaShop\Core\Domain\Currency\QueryResult\EditableCurrency */ public function handle(GetCurrencyForEditing $query); }