Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | abstract class WebSocketArgument implements IWebSocketArgumentInterface |
||
8 | { |
||
9 | protected ?string $reqId; |
||
10 | |||
11 | protected string $symbols; |
||
12 | |||
13 | public function __construct(string $symbol, ?string $reqId = null) |
||
14 | { |
||
15 | $this->symbols = $symbol; |
||
16 | $this->reqId = $reqId; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getReqId(): string |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getSymbols(): string |
||
33 | } |
||
34 | } |
||
35 |