| 1 | <?php |
||
| 12 | class ExchangeConfig |
||
| 13 | { |
||
| 14 | protected $name; |
||
| 15 | protected $type; |
||
| 16 | protected $passive; |
||
| 17 | protected $durable; |
||
| 18 | protected $autoDelete; |
||
| 19 | |||
| 20 | public function __construct($name, $type, $passive, $durable, $autoDelete) |
||
| 28 | |||
| 29 | public function getName() |
||
| 33 | |||
| 34 | public function getType() |
||
| 38 | |||
| 39 | public function getPassive() |
||
| 43 | |||
| 44 | public function getDurable() |
||
| 48 | |||
| 49 | public function getAutoDelete() |
||
| 53 | |||
| 54 | } |