| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class TcpServer implements ServerInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $type |
||
| 11 | * @return void |
||
| 12 | */ |
||
| 13 | public function setType(string $type): void { |
||
| 14 | // TODO: Implement setType() method. |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param array $config |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function setConfig(array $config): void { |
||
| 22 | // TODO: Implement setConfig() method. |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function start(): void { |
||
| 29 | // TODO: Implement start() method. |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function down(): void { |
||
| 36 | // TODO: Implement down() method. |
||
| 37 | } |
||
| 38 | } |