mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-30 04:23:11 +03:00
Re-structured the app code to be feature based rather than code type based
This commit is contained in:
10
app/Settings/Setting.php
Normal file
10
app/Settings/Setting.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php namespace BookStack\Settings;
|
||||
|
||||
use BookStack\Model;
|
||||
|
||||
class Setting extends Model
|
||||
{
|
||||
protected $fillable = ['setting_key', 'value'];
|
||||
|
||||
protected $primaryKey = 'setting_key';
|
||||
}
|
Reference in New Issue
Block a user