diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Tag.php | 8 |
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 | } |