diff --git a/src/console/PhutilConsoleTable.php b/src/console/PhutilConsoleTable.php --- a/src/console/PhutilConsoleTable.php +++ b/src/console/PhutilConsoleTable.php @@ -111,7 +111,7 @@ $console->writeOut('%s', $this->getFooter()); } - private function getHeader() { + public function getHeader() { $output = ''; if ($this->borders) { @@ -141,7 +141,7 @@ return $output; } - private function getBody() { + public function getBody() { $output = ''; foreach ($this->data as $data) { @@ -160,7 +160,7 @@ return $output; } - private function getFooter() { + public function getFooter() { $output = ''; if ($this->borders) {