Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 980f927

Browse files
authored
Apply fixes from StyleCI (#526)
1 parent 55f1332 commit 980f927

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/ChannelManagers/RedisChannelManager.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
use Illuminate\Support\Facades\Redis;
1313
use Illuminate\Support\Str;
1414
use Ratchet\ConnectionInterface;
15-
use Ratchet\WebSocket\WsConnection;
1615
use React\EventLoop\LoopInterface;
1716
use React\Promise\PromiseInterface;
1817
use stdClass;

src/Console/Commands/StartServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ protected function configurePcntlSignal()
187187

188188
/**
189189
* Configure the tracker that will delete
190-
* from the store the connections that
190+
* from the store the connections that.
191191
*
192192
* @return void
193193
*/

src/Server/MockableConnection.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ public function __construct($appId, string $socketId)
2323
}
2424

2525
/**
26-
* Send data to the connection
26+
* Send data to the connection.
2727
* @param string $data
2828
* @return \Ratchet\ConnectionInterface
2929
*/
30-
function send($data)
30+
public function send($data)
3131
{
3232
//
3333
}
3434

3535
/**
36-
* Close the connection
36+
* Close the connection.
3737
*
3838
* @return void
3939
*/
40-
function close()
40+
public function close()
4141
{
4242
//
4343
}

0 commit comments

Comments
 (0)