Apply fixes from StyleCI (#526)

This commit is contained in:
rennokki 2020-09-15 09:30:43 +00:00 committed by GitHub
parent 55f1332493
commit 980f9271f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View File

@ -12,7 +12,6 @@ use Illuminate\Cache\RedisLock;
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;

View File

@ -187,7 +187,7 @@ class StartServer extends Command
/**
* Configure the tracker that will delete
* from the store the connections that
* from the store the connections that.
*
* @return void
*/

View File

@ -23,21 +23,21 @@ class MockableConnection implements ConnectionInterface
}
/**
* 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()
{
//
}