diff --git a/config/websockets.php b/config/websockets.php index 2d52a54..75365fc 100644 --- a/config/websockets.php +++ b/config/websockets.php @@ -1,6 +1,5 @@ channelManager->find($request->appId, $request->channelName); if (is_null($channel)) { - throw new HttpException(404, 'Unknown channel "'.$request->channelName.'"'); + throw new HttpException(404, "Unknown channel `{$request->channelName}`."); } return $channel->toArray();