From: Nicolas LÅ“uillet Date: Thu, 5 Mar 2015 18:41:23 +0000 (+0100) Subject: add getUser on Tag entity X-Git-Tag: 2.0.0-alpha.0~73^2~3 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=48b67328e24f1cde00287613507a8f5fcd222f2f;p=github%2Fwallabag%2Fwallabag.git add getUser on Tag entity --- 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 { $this->entries[] = $entry; } + + /** + * @return User + */ + public function getUser() + { + return $this->user; + } }