Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 38c7bb4

Browse files
committed
fix(Subscription): fix queueUrl typo
1 parent 5aeb9c3 commit 38c7bb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ echo "COMMERCETOOLS_CLIENT_ID=YourClientID" > env.list
235235
echo "COMMERCETOOLS_CLIENT_SECRET=YourClientSecret" >> env.list
236236
echo "COMMERCETOOLS_PROJECT=YourProjectKey" >> env.list
237237

238-
docker run --env-file env.list -v $PWD:/opt/app -w /opt/app --rm=true jaysde/php-test-base tools/docker-phpunit.sh
238+
docker run --env-file env.list -v $PWD:/opt/app -w /opt/app --rm=true jenschude/php-test-base tools/docker-phpunit.sh
239239
```
240240

241241
### <a name="contribute"></a>Contribute

src/Core/Model/Subscription/SQSDestination.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static function ofQueueURLAccessKeyAndSecret($uri, $accessKey, $accessSec
4747
{
4848
return static::of($context)
4949
->setType(static::DESTINATION_SQS)
50-
->setQueueURL($uri)
50+
->setQueueUrl($uri)
5151
->setAccessKey($accessKey)
5252
->setAccessSecret($accessSecret);
5353
}

0 commit comments

Comments
 (0)