aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Tag.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-05 19:41:23 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-06 21:09:15 +0100
commit48b67328e24f1cde00287613507a8f5fcd222f2f (patch)
tree2914d6a0c6179b1c45352ada6ebfa4aca747bd9d /src/Wallabag/CoreBundle/Entity/Tag.php
parentefad7e53a1e881dd686c003b624b429ee1e5b52e (diff)
downloadwallabag-48b67328e24f1cde00287613507a8f5fcd222f2f.tar.gz
wallabag-48b67328e24f1cde00287613507a8f5fcd222f2f.tar.zst
wallabag-48b67328e24f1cde00287613507a8f5fcd222f2f.zip
add getUser on Tag entity
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Tag.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Tag.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tag.php b/src/Wallabag/CoreBundle/Entity/Tag.php
index 29a5e4b5..9ae5867c 100644
--- a/src/Wallabag/CoreBundle/Entity/Tag.php
+++ b/src/Wallabag/CoreBundle/Entity/Tag.php
@@ -88,4 +88,12 @@ class Tag
88 { 88 {
89 $this->entries[] = $entry; 89 $this->entries[] = $entry;
90 } 90 }
91
92 /**
93 * @return User
94 */
95 public function getUser()
96 {
97 return $this->user;
98 }
91} 99}