Re-arrange code. No changes.

This commit is contained in:
James Cole
2016-08-26 06:44:24 +02:00
parent 172634a55a
commit 4c015e2d12
6 changed files with 71 additions and 73 deletions

View File

@@ -18,12 +18,12 @@ use Illuminate\Database\Eloquent\SoftDeletes;
* FireflyIII\Models\Configuration
*
* @mixin \Eloquent
* @property integer $id
* @property integer $id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
* @property string $name
* @property string $data
* @property string $name
* @property string $data
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Configuration whereId($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Configuration whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\Configuration whereUpdatedAt($value)
@@ -35,9 +35,8 @@ class Configuration extends Model
{
use SoftDeletes;
protected $table = 'configuration';
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
protected $table = 'configuration';
/**
* @param $value
@@ -58,5 +57,4 @@ class Configuration extends Model
}
}