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

Commit cbf1dae

Browse files
committed
fix(Subscription): fix typo in SQS destination
1 parent 3d7ce40 commit cbf1dae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Core/Model/Subscription/SQSDestination.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,16 @@
2222
* @method SQSDestination setAccessSecret(string $accessSecret = null)
2323
* @method string getRegion()
2424
* @method SQSDestination setRegion(string $region = null)
25+
* @method string getQueueUrl()
26+
* @method SQSDestination setQueueUrl(string $queueUrl = null)
2527
*/
2628
class SQSDestination extends Destination
2729
{
2830
public function fieldDefinitions()
2931
{
3032
return [
3133
'type' => [static::TYPE => 'string'],
32-
'queueURL' => [static::TYPE => 'string'],
34+
'queueUrl' => [static::TYPE => 'string'],
3335
'accessKey' => [static::TYPE => 'string'],
3436
'accessSecret' => [static::TYPE => 'string'],
3537
'region' => [static::TYPE => 'string'],

0 commit comments

Comments
 (0)