Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class PrivateChannelNode extends ScriptNode |
||
6 | { |
||
7 | private string $channelIdentifier; |
||
8 | |||
9 | /** |
||
10 | * ListenNode constructor. |
||
11 | * |
||
12 | * @param string $channelIdentifier The name of the echo event channel. |
||
13 | */ |
||
14 | 3 | public function __construct(string $channelIdentifier) |
|
15 | { |
||
16 | 3 | $this->channelIdentifier = $channelIdentifier; |
|
17 | 3 | } |
|
18 | |||
19 | 2 | public function __toString() |
|
22 | } |
||
23 | } |
||
24 |