setName($name); } if (! empty($content)) { $this->setContent($content); } } /** * @param string $name * @return $this */ public function setName($name) { $this->name = ltrim($name, '@'); return $this; } /** @return string|null */ public function getName() { return $this->name; } /** * @param string $content * @return $this */ public function setContent($content) { $this->content = $content; return $this; } /** @return string|null */ public function getContent() { return $this->content; } /** @return non-empty-string */ public function generate() { return '@' . $this->name . (! empty($this->content) ? ' ' . $this->content : ''); } }