-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Console] Ensure overriding Command::execute()
keeps priority over __invoke()
#60361
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Jérôme!
Thank you @GromNaN. |
}; | ||
|
||
$command->run(new ArrayInput([]), new NullOutput()); | ||
$this->assertSame('execute', $command->called); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This tests only if it was called, but in theory the other method could be called before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only it was the last called. I assumed that was enough to cover the feature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But priority means it should be the first called method, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In practice, only one of them can be called by Command::run()
Implements #60353 (comment)