Skip to content

Commit a6efe3b

Browse files
author
Martin Brecht-Precht
committed
Added getters to the HtmlBuilder.
1 parent 508fef6 commit a6efe3b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/Handler/HtmlHandler.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,22 @@ public function setBreakSoftBreaks($breakSoftBreaks)
133133
return $this;
134134
}
135135

136+
/**
137+
* @return StringBuilder
138+
*/
139+
public function getHtmlBuilder()
140+
{
141+
return $this->htmlBuilder;
142+
}
143+
144+
/**
145+
* @return Stack
146+
*/
147+
public function getBlockStack()
148+
{
149+
return $this->blockStack;
150+
}
151+
136152
/**
137153
* @return void
138154
*/

0 commit comments

Comments
 (0)