From 48699e191f2c9743883bc5b9df95329f5324a44f Mon Sep 17 00:00:00 2001 From: James Brooks Date: Fri, 2 Jan 2015 08:49:18 +0000 Subject: [PATCH] Add @property docs to Incident model --- src/Models/Incident.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Models/Incident.php b/src/Models/Incident.php index 97ebd2ad..d718ef3f 100644 --- a/src/Models/Incident.php +++ b/src/Models/Incident.php @@ -9,6 +9,13 @@ use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletingTrait; use Watson\Validating\ValidatingTrait; +/** + * @property int $component_id + * @property int $user_id + * @property string $name + * @property int $status + * @property string $message + */ class Incident extends Model implements TransformableInterface { use SoftDeletingTrait, ValidatingTrait;