laravel-websockets/src/Statistics/Models/WebSocketsStatisticsEntry.php

13 lines
243 B
PHP
Raw Normal View History

2018-12-03 10:58:42 +00:00
<?php
2018-12-03 12:49:56 +00:00
namespace BeyondCode\LaravelWebSockets\Statistics\Models;
2018-12-03 10:58:42 +00:00
use Illuminate\Database\Eloquent\Model;
class WebSocketsStatisticsEntry extends Model
{
protected $guarded = [];
protected $table = 'websockets_statistics_entries';
2018-12-04 21:22:33 +00:00
}