@@ 67-70 (lines=4) @@ | ||
64 | return; |
|
65 | } |
|
66 | ||
67 | if ($event->getRequest()->headers->has('x-amz-sns-message-type')) { |
|
68 | $result = $this->handleSnsNotifications($event); |
|
69 | $event->setResponse(new Response($result, 200)); |
|
70 | } |
|
71 | ||
72 | if ($event->getRequest()->headers->has('iron-message-id')) { |
|
73 | $result = $this->handleIronMqNotifications($event); |
|
@@ 72-75 (lines=4) @@ | ||
69 | $event->setResponse(new Response($result, 200)); |
|
70 | } |
|
71 | ||
72 | if ($event->getRequest()->headers->has('iron-message-id')) { |
|
73 | $result = $this->handleIronMqNotifications($event); |
|
74 | $event->setResponse(new Response($result, 200)); |
|
75 | } |
|
76 | } |
|
77 | ||
78 | /** |