* @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\Contact\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Contact\Query\GetContactForEditing; use PrestaShop\PrestaShop\Core\Domain\Contact\QueryResult\EditableContact; /** * Interface GetContactForEditingHandlerInterface defines contract for GetContactForEditingHandler */ interface GetContactForEditingHandlerInterface { /** * @param GetContactForEditing $query * * @return EditableContact */ public function handle(GetContactForEditing $query); }