Michał Bundyra

Results 354 comments of Michał Bundyra

@vss414 This is great! Exactly what I was looking for. Can't wait to get my hands on it :) @maks-rafalko My custom mutator will be to remove some calls while...

Is this still an issue? I tried this test case and it passes: ``` php public function testZendMvcIssue16() { $arr = [ 'Zend\View\Model\JsonModel' => ['application/json'], 'Zend\View\Model\FeedModel' => ['application/rss+xml'], ]; $header...

Thanks for checking this. I am not sure since I haven't tested it for a long time. I can see if the issue still applies, will get back on this....

I've ran into this issue many times as well and haven't found a good solution. One way to recreate this is to extend the AbstractRestfulController and implement the get() action...

I've stumbled across the same problem as I am currently trying to implement a REST API with ZF2. I registered the `ViewJsonStrategy` in my module and expected the `AbstractRestfulController` to...

https://github.com/karborator/zend-mvc --- Originally posted by @karborator at https://github.com/zendframework/zend-mvc/issues/3#issuecomment-227584564

Is there a reason why AbstractRestfulController returns an array in the pre-implemented methods instead of an JsonModel object? --- Originally posted by @chaos0815 at https://github.com/zendframework/zend-mvc/issues/3#issuecomment-334104801

Suggestions: - proposed fix is a bc break, no-go, even for 3.x (it is subtle) - use a separate listener for this functionality, and make it act with a lower...

@froschdesign There is no alternative, I believe it should be ported to Laminas as it is used in many examples (as you pointed). Of course it should be also updated...