laravel-websockets/src/Facades/StatisticsStore.php

20 lines
429 B
PHP

<?php
namespace BeyondCode\LaravelWebSockets\Facades;
use BeyondCode\LaravelWebSockets\Contracts\StatisticsStore as StatisticsStoreInterface;
use Illuminate\Support\Facades\Facade;
class StatisticsStore extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return StatisticsStoreInterface::class;
}
}