* @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\Meta\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Meta\Query\GetMetaForEditing; use PrestaShop\PrestaShop\Core\Domain\Meta\QueryResult\EditableMeta; /** * Interface GetMetaForEditingHandlerInterface defines contract for GetMetaForEditingHandler. */ interface GetMetaForEditingHandlerInterface { /** * Gets data related with meta entity. * * @param GetMetaForEditing $query * * @return EditableMeta */ public function handle(GetMetaForEditing $query); }