. */ #namespace Doctrine::ORM::Internal::Hydration; /** * Defines an array hydration strategy. * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen * @author Roman Borschel */ class Doctrine_ORM_Internal_Hydration_ArrayDriver { /** * */ public function getElementCollection($component) { return array(); } /** * */ public function getElement(array $data, $component) { return $data; } /** * */ public function registerCollection($coll) { /* Nothing to do */ } /** * */ public function initRelatedCollection(array &$data, $name) { if ( ! isset($data[$name])) { $data[$name] = array(); } } public function addRelatedIndexedElement(array &$entity1, $property, array &$entity2, $indexField) { $entity1[$property][$entity2[$indexField]] = $entity2; } public function addRelatedElement(array &$entity1, $property, array &$entity2) { $entity1[$property][] = $entity2; } public function setRelatedElement(array &$entity1, $property, &$entity2) { $entity1[$property] = $entity2; } public function isIndexKeyInUse(array &$entity, $assocField, $indexField) { return isset($entity[$assocField][$indexField]); } public function isFieldSet(array &$entity, $field) { return isset($entity[$field]); } public function getFieldValue(array &$entity, $field) { return $entity[$field]; } public function &getReferenceValue(array &$entity, $field) { return $entity[$field]; } public function addElementToIndexedCollection(array &$coll, array &$entity, $keyField) { $coll[$entity[$keyField]] = $entity; } public function addElementToCollection(array &$coll, array &$entity) { $coll[] = $entity; } /** * */ public function getNullPointer() { return null; } /** * */ public function getLastKey(&$data) { end($data); return key($data); } /** * */ public function flush() { /* Nothing to do */ } }