| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct($name, $passive, $durable, $exclusive, $autoDelete, $noWait = false, $arguments = array()) |
||
| 23 | { |
||
| 24 | $this->name = $name; |
||
| 25 | $this->passive = $passive; |
||
| 26 | $this->durable = $durable; |
||
| 27 | $this->exclusive = $exclusive; |
||
| 28 | $this->autoDelete = $autoDelete; |
||
| 29 | $this->noWait = $noWait; |
||
| 30 | $this->arguments = $arguments; |
||
| 31 | } |
||
| 32 | |||
| 67 | } |