Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.7085 |
Changes | 0 |
1 | <?php |
||
27 | 1 | public function getAmqpTable() |
|
28 | { |
||
29 | 1 | $amqpTable = null; |
|
30 | 1 | if (isset($this->configuration['amqp_table'])) { |
|
31 | $amqpTable = new AMQPTable(); |
||
32 | foreach ($this->configuration['aqmp_table'] as $key => $tableParam) { |
||
33 | $amqpTable->set($key, $tableParam); |
||
34 | } |
||
35 | } |
||
36 | |||
37 | 1 | return $amqpTable; |
|
38 | } |
||
39 | |||
65 |