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