]> BookStack Code Mirror - bookstack/blobdiff - app/Ownable.php
move zip export into exportservice
[bookstack] / app / Ownable.php
index f2cfe801b8a98e6e13349479c5834d16919be488..bf24fad5d8676c5198783aa4b547a19d76ca13bd 100644 (file)
@@ -1,6 +1,11 @@
 <?php namespace BookStack;
 
+use BookStack\Auth\User;
 
+/**
+ * @property int created_by
+ * @property int updated_by
+ */
 abstract class Ownable extends Model
 {
     /**
@@ -29,5 +34,4 @@ abstract class Ownable extends Model
     {
         return strtolower(array_slice(explode('\\', static::class), -1, 1)[0]);
     }
-
-}
\ No newline at end of file
+}