-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Added a note about the implementation of the verbosity semantic methods #5443
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,6 +223,13 @@ verbosity levels:: | |
// ... | ||
} | ||
|
||
.. note:: | ||
|
||
For backwards compatibility reasons, these semantic methods do not exist in | ||
the ``OutputInterface`` class until Symfony 3.0. They are defined in the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "class" needs to be removed. |
||
different implementations of the interface | ||
(e.g. :class:`Symfony\\Component\\Console\\Output\\Output`). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure I understand your comment. I try to say that these methods exist in the different implementations of the interface, for example in the |
||
|
||
When the quiet level is used, all output is suppressed as the default | ||
:method:`Symfony\\Component\\Console\\Output\\Output::write` method returns | ||
without actually printing. | ||
|
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.
do not exist/until -> are only introduced after in 3.0 to keep BC