diff options
Diffstat (limited to 'src/view/AbstractBuilder.php')
| -rw-r--r-- | src/view/AbstractBuilder.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/AbstractBuilder.php b/src/view/AbstractBuilder.php index 76c51ed..7b53010 100644 --- a/src/view/AbstractBuilder.php +++ b/src/view/AbstractBuilder.php | |||
| @@ -49,11 +49,11 @@ abstract class AbstractBuilder | |||
| 49 | return str_replace('_', '', ucwords($input, '_')); | 49 | return str_replace('_', '', ucwords($input, '_')); |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | public function render(): string // = getHTML() | 52 | protected function render(): string // = getHTML() |
| 53 | { | 53 | { |
| 54 | return $this->html; | 54 | return $this->html; |
| 55 | } | 55 | } |
| 56 | public function addHTML(string $html): void | 56 | protected function addHTML(string $html): void |
| 57 | { | 57 | { |
| 58 | $this->html .= $html; | 58 | $this->html .= $html; |
| 59 | } | 59 | } |
