mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
Ensure loading of postal code does not fails
This commit is contained in:
4
tests/app/config/packages/dev/messenger.yaml
Normal file
4
tests/app/config/packages/dev/messenger.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
framework:
|
||||
messenger:
|
||||
transports:
|
||||
async: 'in-memory://'
|
15
tests/app/config/packages/messenger.yaml
Normal file
15
tests/app/config/packages/messenger.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
framework:
|
||||
messenger:
|
||||
# Uncomment this (and the failed transport below) to send failed messages to this transport for later handling.
|
||||
# failure_transport: failed
|
||||
|
||||
transports:
|
||||
# https://symfony.com/doc/current/messenger.html#transport-configuration
|
||||
# async: '%env(MESSENGER_TRANSPORT_DSN)%'
|
||||
# failed: 'doctrine://default?queue_name=failed'
|
||||
# sync: 'sync://'
|
||||
|
||||
routing:
|
||||
# Route your messages to the transports
|
||||
'Chill\CalendarBundle\Messenger\Message\CalendarRangeMessage': async
|
||||
# 'App\Message\YourMessage': async
|
6
tests/app/config/packages/test/messenger.yaml
Normal file
6
tests/app/config/packages/test/messenger.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
framework:
|
||||
messenger:
|
||||
transports:
|
||||
async: 'in-memory://'
|
||||
failed: 'in-memory://'
|
||||
sync: 'in-memory://'
|
Reference in New Issue
Block a user