]> BookStack Code Mirror - bookstack/blobdiff - app/Actions/Comment.php
Checked over recycle bin parent/child flows
[bookstack] / app / Actions / Comment.php
index f138ee4a1ffed5da7bb1ead3a581d9045901179f..655d452219b8200da95cab132b605d0fc4ea1543 100644 (file)
@@ -2,9 +2,15 @@
 
 use BookStack\Ownable;
 
+/**
+ * @property string text
+ * @property string html
+ * @property int|null parent_id
+ * @property int local_id
+ */
 class Comment extends Ownable
 {
-    protected $fillable = ['text', 'html', 'parent_id'];
+    protected $fillable = ['text', 'parent_id'];
     protected $appends = ['created', 'updated'];
 
     /**