From dac41a31d4438c250b38d46222fd831d1fd2897e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Kukli=C5=84ski?= Date: Mon, 18 Dec 2023 20:46:39 +0100 Subject: [PATCH] Update doc/01-installation.md file --- doc/01-installation.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/01-installation.md b/doc/01-installation.md index ddbb3304..6493218b 100644 --- a/doc/01-installation.md +++ b/doc/01-installation.md @@ -92,18 +92,18 @@ ## Asynchronous Messenger case - In case you use asynchronous Messenger transport by default, there is a need to configure all Wishlist commands to sync transport. - You can do this by configuring the `WishlistSyncCommandInterface` interface to sync transport (as presented on code listing below). + In case you use asynchronous Messenger transport by default, there is a need to configure all Wishlist commands to sync transport. + You can do this by configuring the `WishlistSyncCommandInterface` interface to sync transport (as presented on code listing below). - ```yaml - # config/packages/messenger.yaml - - framework: - messenger: - transports: - sync: 'sync://' - routing: - 'BitBag\SyliusWishlistPlugin\Command\Wishlist\WishlistSyncCommandInterface': sync - ``` + ```yaml + # config/packages/messenger.yaml + + framework: + messenger: + transports: + sync: 'sync://' + routing: + 'BitBag\SyliusWishlistPlugin\Command\Wishlist\WishlistSyncCommandInterface': sync + ``` - All commands from the plugin implement the `WishlistSyncCommandInterface` interface, so there is no need for other configuration. + All commands from the plugin implement the `WishlistSyncCommandInterface` interface, so there is no need for other configuration.