By alexpott on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
9.4.x
Introduced in version:
9.4.0
Issue links:
Description:
The feed.bridge.writer service has been deprecated and will be removed from Drupal 10.
If you are using this service you can add a new service to your module's services.yml file with the following definition:
feed.bridge.writer:
class: Drupal\Component\Bridge\ZfExtensionManagerSfContainer
calls:
- [setContainer, ['@service_container']]
- [setStandalone, ['\Laminas\Feed\Writer\StandaloneExtensionManager']]
arguments: ['feed.writer.']
Alternatively you could use the \Laminas\Feed\Writer\StandaloneExtensionManager class directly.
Impacts:
Module developers