From 636bf67d6cce1cef5d7e4211a286b84c791919ce Mon Sep 17 00:00:00 2001 From: freek Date: Mon, 26 Nov 2018 23:52:01 +0100 Subject: [PATCH] nitpick --- config/websockets.php | 1 - src/LaravelEcho/Http/Controllers/FetchChannel.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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();