add getUser on Tag entity

This commit is contained in:
Nicolas Lœuillet 2015-03-05 19:41:23 +01:00
parent efad7e53a1
commit 48b67328e2

View file

@ -88,4 +88,12 @@ class Tag
{
$this->entries[] = $entry;
}
/**
* @return User
*/
public function getUser()
{
return $this->user;
}
}