BookStackApp/BookStack

View on GitHub
app/Settings/Setting.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace BookStack\Settings;

use BookStack\App\Model;

class Setting extends Model
{
    protected $fillable = ['setting_key', 'value'];

    protected $primaryKey = 'setting_key';
}