Apply fixes from StyleCI (#526)
This commit is contained in:
parent
55f1332493
commit
980f9271f0
|
|
@ -12,7 +12,6 @@ use Illuminate\Cache\RedisLock;
|
||||||
use Illuminate\Support\Facades\Redis;
|
use Illuminate\Support\Facades\Redis;
|
||||||
use Illuminate\Support\Str;
|
use Illuminate\Support\Str;
|
||||||
use Ratchet\ConnectionInterface;
|
use Ratchet\ConnectionInterface;
|
||||||
use Ratchet\WebSocket\WsConnection;
|
|
||||||
use React\EventLoop\LoopInterface;
|
use React\EventLoop\LoopInterface;
|
||||||
use React\Promise\PromiseInterface;
|
use React\Promise\PromiseInterface;
|
||||||
use stdClass;
|
use stdClass;
|
||||||
|
|
|
||||||
|
|
@ -187,7 +187,7 @@ class StartServer extends Command
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configure the tracker that will delete
|
* Configure the tracker that will delete
|
||||||
* from the store the connections that
|
* from the store the connections that.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -23,21 +23,21 @@ class MockableConnection implements ConnectionInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send data to the connection
|
* Send data to the connection.
|
||||||
* @param string $data
|
* @param string $data
|
||||||
* @return \Ratchet\ConnectionInterface
|
* @return \Ratchet\ConnectionInterface
|
||||||
*/
|
*/
|
||||||
function send($data)
|
public function send($data)
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Close the connection
|
* Close the connection.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function close()
|
public function close()
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue