Completed
Push — master ( 5b84c6...1f2285 )
by Julien
16:45
created
tests/Integration/WebsocketServerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     {
12 12
         $app = new App\App();
13 13
 
14
-        $app->topic('articles', function ($topicPattern) {
14
+        $app->topic('articles', function($topicPattern) {
15 15
             return new App\ArticleTopic($topicPattern);
16 16
         });
17 17
 
Please login to merge, or discard this patch.
tests/Integration/App/AppWebsocket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
     {
9 9
         parent::__construct($values);
10 10
 
11
-        $this->topic('articles', function ($topicPattern, $arguments) {
11
+        $this->topic('articles', function($topicPattern, $arguments) {
12 12
             $channelName = $arguments['channel'];
13 13
 
14 14
             return new ArticleTopic($topicPattern, $channelName);
Please login to merge, or discard this patch.