This commit is contained in:
freek 2018-12-03 16:24:44 +01:00
parent 9636f7de6b
commit c30aeb61fb
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class StartWebSocketServer extends Command
'handler' => HandlerStack::create($handler), '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); return new StatisticsLogger(app(ChannelManager::class), $client);
}); });

View File

@ -10,7 +10,7 @@ class StatisticsLogger extends Facade
{ {
protected static function getFacadeAccessor() protected static function getFacadeAccessor()
{ {
return 'websockets.statisticslogger'; return 'websockets.statisticsLogger';
} }
public static function fake() public static function fake()