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

Apply fixes from StyleCI #526

Merged
merged 1 commit into from
Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/ChannelManagers/RedisChannelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
use Illuminate\Support\Facades\Redis;
use Illuminate\Support\Str;
use Ratchet\ConnectionInterface;
use Ratchet\WebSocket\WsConnection;
use React\EventLoop\LoopInterface;
use React\Promise\PromiseInterface;
use stdClass;
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Commands/StartServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ protected function configurePcntlSignal()

/**
* Configure the tracker that will delete
* from the store the connections that
* from the store the connections that.
*
* @return void
*/
Expand Down
8 changes: 4 additions & 4 deletions src/Server/MockableConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ public function __construct($appId, string $socketId)
}

/**
* Send data to the connection
* Send data to the connection.
* @param string $data
* @return \Ratchet\ConnectionInterface
*/
function send($data)
public function send($data)
{
//
}

/**
* Close the connection
* Close the connection.
*
* @return void
*/
function close()
public function close()
{
//
}
Expand Down