1 | <?php |
||
8 | final class SignalAware implements ClientInterface |
||
9 | { |
||
10 | private $client; |
||
11 | private $handlersRegistered = false; |
||
12 | |||
13 | 2 | public function __construct(ClientInterface $client) |
|
17 | |||
18 | 2 | public function channel(): Channel |
|
24 | |||
25 | 2 | public function closed(): bool |
|
29 | |||
30 | 2 | public function close(): void |
|
34 | |||
35 | 2 | private function register(): void |
|
57 | } |
||
58 |