This commit is contained in:
Alex Renoki 2020-08-19 19:56:34 +03:00
parent 0902d43244
commit da7fe0cf60
1 changed files with 4 additions and 4 deletions

View File

@ -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.