* @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\Feature\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Feature\Query\GetFeatureForEditing; use PrestaShop\PrestaShop\Core\Domain\Feature\QueryResult\EditableFeature; /** * Describes feature for editing handler. */ interface GetFeatureForEditingHandlerInterface { /** * @param GetFeatureForEditing $query * * @return EditableFeature */ public function handle(GetFeatureForEditing $query); }