From 0569142f84b4948d70cdc5a27a5c8e211cf388ed Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sun, 10 May 2015 19:41:33 +0100 Subject: [PATCH] Update the Incident model attributes --- app/Models/Incident.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/Models/Incident.php b/app/Models/Incident.php index 451c2518..05862b75 100644 --- a/app/Models/Incident.php +++ b/app/Models/Incident.php @@ -20,14 +20,15 @@ use Watson\Validating\ValidatingTrait; /** * @property int $id * @property int $component_id - * @property int $user_id * @property string $name * @property int $status * @property string $message - * @property string $humanStatus + * @property int $user_id + * @property \Carbon\Carbon $scheduled_at * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @property \Carbon\Carbon $deleted_at + * @property string $humanStatus */ class Incident extends Model implements HasPresenter {