mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-19 04:03:26 +02:00

* phpstan v1 + workflow * Fix intend * More fixes * Update phpstan.neon * phpstan level 2 * Move errors ignoring into phpstan.neon * phpstan level 3 * Don't ignore templates folder * Something from level 4 * Update phpstan.neon
20 lines
320 B
PHP
20 lines
320 B
PHP
<?php
|
|
|
|
namespace MyAAC\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property string $name
|
|
* @property string $key
|
|
* @property string $value
|
|
*/
|
|
class Settings extends Model {
|
|
|
|
protected $table = TABLE_PREFIX . 'settings';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['name', 'key', 'value'];
|
|
|
|
}
|