wip
This commit is contained in:
parent
9636f7de6b
commit
c30aeb61fb
|
|
@ -51,7 +51,7 @@ class StartWebSocketServer extends Command
|
|||
'handler' => HandlerStack::create($handler),
|
||||
]);
|
||||
|
||||
app()->singleton('websockets.statisticslogger', function() use ($client) {
|
||||
app()->singleton('websockets.statisticsLogger', function() use ($client) {
|
||||
return new StatisticsLogger(app(ChannelManager::class), $client);
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ class StatisticsLogger extends Facade
|
|||
{
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return 'websockets.statisticslogger';
|
||||
return 'websockets.statisticsLogger';
|
||||
}
|
||||
|
||||
public static function fake()
|
||||
|
|
|
|||
Loading…
Reference in New Issue