Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct($region, $topicName, LoggerInterface $logger) |
||
18 | { |
||
19 | $client = SnsClient::factory([ |
||
|
|||
20 | 'region' => $region, |
||
21 | 'version' => '2010-03-31', |
||
22 | ]); |
||
23 | |||
24 | $queueWriter = new QueueWriter($client, $topicName, $logger); |
||
25 | parent::__construct($queueWriter); |
||
26 | } |
||
27 | } |
||
28 |
This method has been deprecated.