Completed
Push — master ( d2146f...5e84ef )
by Marcel
01:27
created

src/Statistics/Logger/FakeStatisticsLogger.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\Statistics\Logger;
4
5
use Ratchet\ConnectionInterface;
6
7
class FakeStatisticsLogger implements StatisticsLogger
8
{
9
    public function webSocketMessage(ConnectionInterface $connection)
10
    {
11
    }
12
13
    public function apiMessage($appId)
14
    {
15
    }
16
17
    public function connection(ConnectionInterface $connection)
18
    {
19
    }
20
21
    public function disconnection(ConnectionInterface $connection)
22
    {
23
    }
24
25
    protected function initializeStatistics($id)
0 ignored issues
show
The parameter $id is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
26
    {
27
    }
28
29
    public function save()
30
    {
31
    }
32
}
33