8000 [Console] Added verbosity level shorthand methods to OutputInterface by fabiang · Pull Request #11115 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Console] Added verbosity level shorthand methods to OutputInterface #11115

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changed return value from 'boolean' to 'bool'
  • Loading branch information
fabiang committed Jun 13, 2014
commit 16da41e5fff2774953adbe592cc76c2c611b2da9
8 changes: 4 additions & 4 deletions src/Symfony/Component/Console/Output/OutputInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function getFormatter();
/**
* Do not output any messages.
*
* @return boolean
* @return bool
*
* @api
*/
Expand All @@ -123,7 +123,7 @@ public function isQuiet();
/**
* Increased verbosity of messages.
*
* @return boolean
* @return bool
*
* @api
*/
Expand All @@ -132,7 +132,7 @@ public function isVerbose();
/**
* Informative non essential messages.
*
* @return boolean
* @return bool
*
* @api
*/
Expand All @@ -141,7 +141,7 @@ public function isVeryVerbose();
/**
* Debug messages.
*
* @return boolean
* @return bool
*
* @api
*/
Expand Down
0