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