Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
51 | public function __construct($channel, $reserved1, $queue, $ifUnused, $ifEmpty, $noWait) |
||
52 | { |
||
53 | $this->reserved1 = $reserved1; |
||
54 | $this->queue = $queue; |
||
55 | $this->ifUnused = $ifUnused; |
||
56 | $this->ifEmpty = $ifEmpty; |
||
57 | $this->noWait = $noWait; |
||
58 | |||
59 | parent::__construct($channel); |
||
60 | } |
||
61 | |||
125 |