We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efd5f8 commit 58c82dcCopy full SHA for 58c82dc
src/DI/Helpers/ConnectionsHelper.php
@@ -21,8 +21,8 @@ public function getConfigSchema(): Schema
21
'password' => Expect::string('guest')->dynamic(),
22
'host' => Expect::string('127.0.0.1'),
23
'port' => Expect::int(5672),
24
- 'vhost' => Expect::string('/'),
25
- 'path' => Expect::string('/'),
+ 'vhost' => Expect::string('/')->dynamic(),
+ 'path' => Expect::string('/')->dynamic(),
26
'timeout' => Expect::anyOf(Expect::float(), Expect::int())->default(10)->castTo('float'),
27
'heartbeat' => Expect::anyOf(Expect::float(), Expect::int())->default(60)->castTo('float'),
28
'persistent' => Expect::bool(false),
0 commit comments