From f49e2fade10a1da1a05d97f1430d695db5f7efd9 Mon Sep 17 00:00:00 2001 From: Kodie Grantham Date: Sun, 3 Dec 2023 11:33:29 -0600 Subject: [PATCH] Fix maxFlag to flagMax and maxOption to optionMax typos in HelpScreen class --- lib/cli/arguments/HelpScreen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/arguments/HelpScreen.php b/lib/cli/arguments/HelpScreen.php index 0fd80b8..f800788 100644 --- a/lib/cli/arguments/HelpScreen.php +++ b/lib/cli/arguments/HelpScreen.php @@ -19,9 +19,9 @@ */ class HelpScreen { protected $_flags = array(); - protected $_maxFlag = 0; + protected $_flagMax = 0; protected $_options = array(); - protected $_maxOption = 0; + protected $_optionMax = 0; public function __construct(Arguments $arguments) { $this->setArguments($arguments);