-
-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Access to undefined property #60
Comments
should not happen, because of null coalesce |
Unit test failed when adding |
hmm verbosity, help, version etc are reserved members, best to use something else |
These errors are reported by phpstan with error level 3. You can check the changes in my fork. ------ -----------------------------------------------------------------------------------------------------------
Line src/Application.php
------ -----------------------------------------------------------------------------------------------------------
260 Method Ahc\Cli\Application::parse() should return Ahc\Cli\Input\Command but returns Ahc\Cli\Input\Parser.
------ -----------------------------------------------------------------------------------------------------------
------ -------------------------------------------------------------------------------
Line src/Helper/Shell.php
------ -------------------------------------------------------------------------------
181 Property Ahc\Cli\Helper\Shell::$processStartTime (int) does not accept float.
------ -------------------------------------------------------------------------------
------ --------------------------------------------------------------------
Line src/Input/Command.php
------ --------------------------------------------------------------------
92 Access to an undefined property Ahc\Cli\Input\Command::$verbosity.
------ --------------------------------------------------------------------
------ --------------------------------------------------------------------------------
Line src/Input/Parser.php
------ --------------------------------------------------------------------------------
248 Array (array<Ahc\Cli\Input\Argument>) does not accept Ahc\Cli\Input\Parameter.
------ --------------------------------------------------------------------------------
------ -------------------------------------------------------------
Line tests/Output/ColorTest.php
------ -------------------------------------------------------------
34 Call to an undefined method Ahc\Cli\Output\Color::alert().
66 Call to an undefined method Ahc\Cli\Output\Color::bold().
71 Call to an undefined method Ahc\Cli\Output\Color::bgRed().
76 Call to an undefined method Ahc\Cli\Output\Color::purple().
84 Call to an undefined method Ahc\Cli\Output\Color::random().
------ -------------------------------------------------------------
------ ----------------------------------------------------------------
Line tests/Output/WriterTest.php
------ ----------------------------------------------------------------
30 Access to an undefined property Ahc\Cli\Output\Writer::$error.
46 Access to an undefined property Ahc\Cli\Output\Writer::$bold.
56 Call to an undefined method Ahc\Cli\Output\Writer::clear().
------ ----------------------------------------------------------------
[ERROR] Found 12 errors
|
When adding php-cli/tests/Input/DefaultOptionTest.php Lines 53 to 58 in c17fdec
|
hmm some of that is happening because we have code without declare strict_types. |
i'm on a vacation for few more days, will take time to look into it |
What's new? |
nothing new :) |
$verbosity
is not defined.php-cli/src/Input/Command.php
Line 92 in c17fdec
The text was updated successfully, but these errors were encountered: