8000 [Console] StyleInterface: Add missing comment() by chalasr · Pull Request #18888 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Console] StyleInterface: Add missing comment() #18888

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 1 commit into from
Closed
Changes from all commits
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
[Console] StyleInterface: Add missing comment()
  • Loading branch information
chalasr committed May 26, 2016
commit 2b9170499a0169f53f7d56435d563b13c911442b
7 changes: 7 additions & 0 deletions src/Symfony/Component/Console/Style/StyleInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ public function listing(array $elements);
*/
public function text($message);

/**
* Formats a comment result bar.
*
* @param string|array $message
*/
public function comment($message);

/**
* Formats a success result bar.
*
Expand Down
0