1 | <?php |
||
8 | final class Fluent implements ChannelInterface |
||
9 | { |
||
10 | private $channel; |
||
11 | |||
12 | 2 | public function __construct(ChannelInterface $channel) |
|
16 | |||
17 | 1 | public function exchange(): Exchange |
|
21 | |||
22 | 1 | public function queue(): Queue |
|
26 | |||
27 | 1 | public function basic(): Basic |
|
31 | |||
32 | 1 | public function transaction(): Transaction |
|
36 | |||
37 | 1 | public function closed(): bool |
|
41 | |||
42 | 1 | public function close(): void |
|
47 | } |
||
48 |