summaryrefslogtreecommitdiffstats
path: root/db/entity.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 22:27:00 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 22:27:00 +0200
commit04d7d834f3192ea5b652f59a01bc80ac1ae961f0 (patch)
tree66f21b5ab79f060308e716128d2519a88efd0e79 /db/entity.php
parent6fd64e786fe362b6ee0765c7297b7193e3b82989 (diff)
add annotations to entities
Diffstat (limited to 'db/entity.php')
-rw-r--r--db/entity.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/entity.php b/db/entity.php
index ae781e1e5..194895fee 100644
--- a/db/entity.php
+++ b/db/entity.php
@@ -13,7 +13,10 @@
namespace OCA\News\Db;
-
+/**
+ * @method integer getId()
+ * @method void setId(integer $value)
+ */
abstract class Entity {
public $id;