protected function visitTagAttributes(Tag $tag, $newLinePrettyPrint, $close = '>')
{
$open = '<' . $tag->name;
if (count($tag->attributes)) {
$this->buffer($this->indent() . $open, false);
$this->visitAttributes($tag->attributes);
$this->buffer($this->getClassesDisplayCode() . $close . $this->newline(), false);
return;
}
$this->buffer($open . $close, $newLinePrettyPrint ? null : false);
}