Update code to match master

This commit is contained in:
Joseph Cohen
2015-03-26 15:07:16 -06:00
parent eb22ac6d8a
commit 37e20bf2bf
15 changed files with 192 additions and 105 deletions

View File

@@ -3,7 +3,6 @@
namespace CachetHQ\Cachet\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Watson\Validating\ValidatingTrait;
/**
@@ -15,7 +14,7 @@ use Watson\Validating\ValidatingTrait;
*/
class ComponentGroup extends Model
{
use SoftDeletes, ValidatingTrait;
use ValidatingTrait;
/**
* The validation rules.
@@ -33,13 +32,6 @@ class ComponentGroup extends Model
*/
protected $fillable = ['name'];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = ['deleted_at'];
/**
* A group can have many components.
*