Results 260 comments of webDEVILopers

Summary: Both workarounds above work to enable **Doctrine hydration** for custom **ManyToMany** relationships. Except: Both workarounds using hydration exclude the **getAccessorName** methods. This causes non-setting values on form elements that...

Listed below are some issues that may relate or help to solve this topic. Custom hydration for **User** entity requested here: https://github.com/ZF-Commons/ZfcUser/pull/174 Using hydrators: https://github.com/ZF-Commons/ZfcUser/issues/252 Using different hydrators than **ClassMethods**:...

Are there any plans for refactoring the update process for an edit form to make it work?

If the _ZfcAdmin_ module will merge the _zfcuser_user_hydrator_ option should we implement this feature to _ZfcUserAdmin_? Adapting the _hydrator_ on the _CreateUser_ and _EditUser_ form should fix this and other...

Hi @tad3j , regarding my issues I think nothing has changed. I believe @Danielss89 is very busy. Some of my issues are about a year old. But since a lot...

Guess it's best to wait for the next versions. BTW: what error did you get?

For anyone using @Guzzle and @Symfony Components: ```php use Symfony\Component\Serializer\Encoder\JsonDecode; use Symfony\Component\Serializer\Encoder\JsonEncoder; $client = new \GuzzleHttp\Client(); $response = $client->request('GET', $uri); $decoder = new JsonDecode(); $routing = $decoder->decode($response->getBody()->getContents(), JsonEncoder::FORMAT); ```