- [x] I was not able to find an [open](https://github.com/zendframework/zend-feed/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-feed/issues?q=is%3Aclosed) issue matching what I'm seeing. - [x] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/) ([Signup for Slack here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).) After updating zend-feed to v2.10.3, it seems that the `setInvokableClass` to add personnal writer has changed. Giving the following error : ``` Method by name of setInvokableClass does not exist in Zend\Feed\Writer\ExtensionManager ``` I tried to find more information into your doc, but the bloc is empty with a `TODO`mention. ### Code to reproduce the issue <!-- Please provide the minimum code necessary to recreate the issue --> ```php extensions = Writer::getExtensionManager(); $extensions->setInvokableClass('MyEntryName','PathToMyEntryClass'); Writer::registerExtension('MyExtensionName'); ``` ### Expected results <!-- What do you think should have happened? --> My extension well registered. And the section doc completed. ### Actual results <!-- What did you actually observe? --> ``` Method by name of setInvokableClass does not exist in Zend\Feed\Writer\ExtensionManager ```
After updating zend-feed to v2.10.3, it seems that the
setInvokableClassto add personnal writer has changed. Giving the following error :I tried to find more information into your doc, but the bloc is empty with a
TODOmention.Code to reproduce the issue
Expected results
My extension well registered.
And the section doc completed.
Actual results