Typo
This commit is contained in:
parent
0902d43244
commit
da7fe0cf60
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace BeyondCode\LaravelWebSockets\Statistics\Logger;
|
namespace BeyondCode\LaravelWebSockets\Statistics\Logger;
|
||||||
|
|
||||||
use Ratchet\connectionInterface;
|
use Ratchet\ConnectionInterface;
|
||||||
|
|
||||||
interface StatisticsLogger
|
interface StatisticsLogger
|
||||||
{
|
{
|
||||||
|
|
@ -12,7 +12,7 @@ interface StatisticsLogger
|
||||||
* @param \Ratchet\ConnectionInterface $connection
|
* @param \Ratchet\ConnectionInterface $connection
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function webSocketMessage(connectionInterface $connection);
|
public function webSocketMessage(ConnectionInterface $connection);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the incoming API message.
|
* Handle the incoming API message.
|
||||||
|
|
@ -28,7 +28,7 @@ interface StatisticsLogger
|
||||||
* @param \Ratchet\ConnectionInterface $connection
|
* @param \Ratchet\ConnectionInterface $connection
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function connection(connectionInterface $connection);
|
public function connection(ConnectionInterface $connection);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle disconnections.
|
* Handle disconnections.
|
||||||
|
|
@ -36,7 +36,7 @@ interface StatisticsLogger
|
||||||
* @param \Ratchet\ConnectionInterface $connection
|
* @param \Ratchet\ConnectionInterface $connection
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function disconnection(connectionInterface $connection);
|
public function disconnection(ConnectionInterface $connection);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save all the stored statistics.
|
* Save all the stored statistics.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue