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

Commit da7fe0c

Browse files
committed
Typo
1 parent 0902d43 commit da7fe0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Statistics/Logger/StatisticsLogger.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace BeyondCode\LaravelWebSockets\Statistics\Logger;
44

5-
use Ratchet\connectionInterface;
5+
use Ratchet\ConnectionInterface;
66

77
interface StatisticsLogger
88
{
@@ -12,7 +12,7 @@ interface StatisticsLogger
1212
* @param \Ratchet\ConnectionInterface $connection
1313
* @return void
1414
*/
15-
public function webSocketMessage(connectionInterface $connection);
15+
public function webSocketMessage(ConnectionInterface $connection);
1616

1717
/**
1818
* Handle the incoming API message.
@@ -28,15 +28,15 @@ public function apiMessage($appId);
2828
* @param \Ratchet\ConnectionInterface $connection
2929
* @return void
3030
*/
31-
public function connection(connectionInterface $connection);
31+
public function connection(ConnectionInterface $connection);
3232

3333
/**
3434
* Handle disconnections.
3535
*
3636
* @param \Ratchet\ConnectionInterface $connection
3737
* @return void
3838
*/
39-
public function disconnection(connectionInterface $connection);
39+
public function disconnection(ConnectionInterface $connection);
4040

4141
/**
4242
* Save all the stored statistics.

0 commit comments

Comments
 (0)