Fixed build fail due to replaced class name

This commit is contained in:
Mike van Riel
2015-06-21 08:56:53 +02:00
committed by Mike van Riel
parent db3f56cfff
commit 75bb275a99
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ class Generic extends BaseTag
*/
public function __toString()
{
return $this->getName() . ($this->description ? ' ' . $this->description->render() : '');
return '@' . $this->getName() . ($this->description ? ' ' . $this->description->render() : '');
}
/**