attributeClass = $attributeClass; $this->tag = $tag; } public function getAttributeClass() : string { return $this->attributeClass; } public function getTag() : string { if ($this->tag === null) { return $this->attributeClass; } return $this->tag; } }