Skip to content

Commit

Permalink
Add 'route' case to WebSocketDebugger
Browse files Browse the repository at this point in the history
In the switch statement of the WebSocketDebugger class, an additional case for 'route' was added. This case currently does nothing (break;) and can be extended in the future. The reason for this addition is to prepare the WebSocketDebugger to handle routing cases as we evolved the system to support new WebSocket features.
  • Loading branch information
AuroraYolo committed Aug 4, 2023
1 parent d8895fd commit 2c6dccb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cloud-admin/SDB/WebSocketDebugger.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,8 @@ public function start(): void
$property = $reflection->getProperty('configs');
$this->out(Json::encode($property->getValue($config)));
break;
case 'route':
break;
case null:
break;
default:
Expand Down

0 comments on commit 2c6dccb

Please sign in to comment.