From 5190646601f2f9e1e3531ee8337639d41c4bd08d Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Sun, 31 Dec 2017 14:16:49 -0300 Subject: [PATCH] Linting --- tests/Broadcasting/BroadcasterTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/Broadcasting/BroadcasterTest.php b/tests/Broadcasting/BroadcasterTest.php index eb4f7a6ab885..c1364ad40f05 100644 --- a/tests/Broadcasting/BroadcasterTest.php +++ b/tests/Broadcasting/BroadcasterTest.php @@ -80,7 +80,8 @@ public function testCanRegisterChannelsAsClasses() { $broadcaster = new FakeBroadcaster; - $broadcaster->channel('something', function () {}); + $broadcaster->channel('something', function () { + }); $broadcaster->channel('somethingelse', DummyBroadcastingChannel::class); } @@ -161,6 +162,6 @@ class DummyBroadcastingChannel { public function join($user, BroadcasterTestEloquentModelStub $model, $nonModel) { - + // } }