From 68e437086b0947b049483ef2d4ca5745a7a75d7e Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 25 Apr 2024 21:29:02 +0200 Subject: [PATCH] Util\Help: rename method --- src/Util/Help.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Util/Help.php b/src/Util/Help.php index 59c1f7df97..a7602b7d9d 100644 --- a/src/Util/Help.php +++ b/src/Util/Help.php @@ -242,11 +242,11 @@ private function getMaxWidth() * * @return int */ - private function getDescrColumnWidth() + private function getDescriptionColumnWidth() { return ($this->getMaxWidth() - $this->maxOptionNameLength - $this->indentWidth - $this->gutterWidth); - }//end getDescrColumnWidth() + }//end getDescriptionColumnWidth() /** @@ -324,7 +324,7 @@ private function printCategoryHeader($header) */ private function printCategoryOptions(array $options) { - $maxDescriptionWidth = $this->getDescrColumnWidth(); + $maxDescriptionWidth = $this->getDescriptionColumnWidth(); $maxTextWidth = ($this->getMaxWidth() - $this->indentWidth); $secondLineIndent = str_repeat(' ', $this->getDescriptionFollowupLineIndentLength());