From 391a52d0e57ddb780018e9a0981ed186f2736539 Mon Sep 17 00:00:00 2001 From: Damien Goujard Date: Thu, 2 Aug 2018 09:48:40 +0200 Subject: [PATCH] Update SQS DSN doc sample with mention urlencode --- docs/transport/sqs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/transport/sqs.md b/docs/transport/sqs.md index 9c688f8ec..8f447d40d 100644 --- a/docs/transport/sqs.md +++ b/docs/transport/sqs.md @@ -29,7 +29,7 @@ $factory = new SqsConnectionFactory([ 'region' => 'aRegion', ]); -// same as above but given as DSN string +// same as above but given as DSN string. You may need to url encode secret if it contains special char (like +) $factory = new SqsConnectionFactory('sqs:?key=aKey&secret=aSecret®ion=aRegion'); $psrContext = $factory->createContext();