123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\EntityManager;
- /**
- * Interface HydratorInterface
- */
- interface HydratorInterface
- {
- /**
- * Extract data from object
- *
- * @param object $entity
- * @return array
- */
- public function extract($entity);
- /**
- * Populate entity with data
- *
- * @param object $entity
- * @param array $data
- * @return object
- */
- public function hydrate($entity, array $data);
- }
|