Tag label is now editable
1 files changed, 7 insertions(+), 0 deletions(-) M src/Entity/Tag.php
M src/Entity/Tag.php +7 -0
@@ 37,6 37,13 @@ class Tag return $this->label; } + public function setLabel(string $label): self + { + $this->label = $label; + + return $this; + } + public function getArticles(): ?\Traversable { return $this->articles;