Edit File: ArrayHydrator.php
<?php declare(strict_types=1); namespace Vonage\Entity\Hydrator; class ArrayHydrator implements HydratorInterface { protected ArrayHydrateInterface $prototype; public function hydrate(array $data): ArrayHydrateInterface { $object = clone $this->prototype; $object->fromArray($data); return $object; } public function hydrateObject(array $data, $object) { $object->fromArray($data); return $object; } public function setPrototype(ArrayHydrateInterface $prototype): void { $this->prototype = $prototype; } }
Back to File Manager