Edit File: HydratorInterface.php
<?php declare(strict_types=1); namespace Vonage\Entity\Hydrator; interface HydratorInterface { /** * Hydrate an object that the hydrator creates */ public function hydrate(array $data); /** * Hydrate an existing object created outside of the hydrator */ public function hydrateObject(array $data, $object); }
Back to File Manager