Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function connect(array $config) |
||
20 | { |
||
21 | $queue = new Account( |
||
22 | Arr::get($config, 'options.queue.host'), |
||
23 | $config['secret_id'], |
||
24 | $config['secret_key'] |
||
25 | ); |
||
26 | |||
27 | $topic = new Account( |
||
28 | Arr::get($config, 'options.topic.host'), |
||
29 | $config['secret_id'], |
||
30 | $config['secret_key'] |
||
31 | ); |
||
32 | |||
33 | return new CMQQueue($queue, $topic, $config); |
||
34 | } |
||
36 |