/** * Creates a new tag * * @param string $tagName the tag name * @param string $content the tags content */ public function __construct($tagName, $content = '') { parent::__construct($tagName, $content); }
public function __construct($content = '') { parent::__construct('see', $content); }