* ***/ /** * */ class ObjectUtility { /** * fills object from array * * @return void */ public static function fromArray(&$object, $data) { foreach ($data as $property => $value) { $object->_setProperty($property, $value); } } }