remove tag from entry #1377

This commit is contained in:
Thomas Citharel
2016-02-10 17:41:28 +01:00
parent ae5b37ef2e
commit 567421af50
5 changed files with 74 additions and 2 deletions

View File

@ -107,4 +107,14 @@ class Tag
{
return $this->entries->contains($entry);
}
/**
* Get entries for this tag.
*
* @return ArrayCollection<Entry>
*/
public function getEntries()
{
return $this->entries;
}
}