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());