height = $height; } public function drawTree(): void { $width = 2 * $this->height - 1; for ($i = 1; $i <= $this->height; $i++) { $stars = 2 * $i - 1; $spaces = ($width - $stars); echo str_repeat(" ", $spaces) . str_repeat("*", $stars) . "
"; } } }