This repository was archived by the owner on Feb 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace BeyondCode \LaravelWebSockets \Statistics \Logger ;
4
4
5
- use Ratchet \connectionInterface ;
5
+ use Ratchet \ConnectionInterface ;
6
6
7
7
interface StatisticsLogger
8
8
{
@@ -12,7 +12,7 @@ interface StatisticsLogger
12
12
* @param \Ratchet\ConnectionInterface $connection
13
13
* @return void
14
14
*/
15
- public function webSocketMessage (connectionInterface $ connection );
15
+ public function webSocketMessage (ConnectionInterface $ connection );
16
16
17
17
/**
18
18
* Handle the incoming API message.
@@ -28,15 +28,15 @@ public function apiMessage($appId);
28
28
* @param \Ratchet\ConnectionInterface $connection
29
29
* @return void
30
30
*/
31
- public function connection (connectionInterface $ connection );
31
+ public function connection (ConnectionInterface $ connection );
32
32
33
33
/**
34
34
* Handle disconnections.
35
35
*
36
36
* @param \Ratchet\ConnectionInterface $connection
37
37
* @return void
38
38
*/
39
- public function disconnection (connectionInterface $ connection );
39
+ public function disconnection (ConnectionInterface $ connection );
40
40
41
41
/**
42
42
* Save all the stored statistics.
You can’t perform that action at this time.
0 commit comments