laravel-websockets/src/Statistics/WebSocketsStatisticsEntry.php

12 lines
235 B
PHP

<?php
namespace BeyondCode\LaravelWebSockets\Statistics;
use Illuminate\Database\Eloquent\Model;
class WebSocketsStatisticsEntry extends Model
{
protected $guarded = [];
protected $table = 'websockets_statistics_entries';
}