function Help::getDescriptionFollowupLineIndentLength
Get the length of the indentation needed for follow up lines when the description does not fit on one line.
Return value
int
1 call to Help::getDescriptionFollowupLineIndentLength()
- Help::printCategoryOptions in vendor/
squizlabs/ php_codesniffer/ src/ Util/ Help.php - Print the options for a category.
File
-
vendor/
squizlabs/ php_codesniffer/ src/ Util/ Help.php, line 257
Class
Namespace
PHP_CodeSniffer\UtilCode
private function getDescriptionFollowupLineIndentLength() {
return $this->maxOptionNameLength + $this->indentWidth + $this->gutterWidth;
}