File "Log.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/file-manager/backend/app/Model/Log.php
File size: 503 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\FM\Model;

use BitApps\FM\Config;
use BitApps\WPDatabase\Model;

/**
 * Model for log
 *
 * @property string $created_at
 * @property string $command
 * @property string $details
 * @property int    $user_id
 */
class Log extends Model
{
    public $timestamps = false;

    protected $prefix = Config::VAR_PREFIX;

    public $casts = ['details' => 'object'];

    protected $fillable = [
        'user_id',
        'command',
        'details',
        'created_at',
    ];
}