8000 [Console] [OutputStyle] Implements verbosity methods · symfony/symfony@a30f507 · GitHub
[go: up one dir, main page]

Skip to content

Commit a30f507

Browse files
committed
[Console] [OutputStyle] Implements verbosity methods
1 parent 6a0b617 commit a30f507

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Collapse file

src/Symfony/Component/Console/Style/OutputStyle.php

Lines changed: 32 additions & 0 deletions
< 972C td data-grid-cell-id="diff-dda3c91564513517cab586b802e051b949b02565c83e3b66b0e9fe4cdf7cb9bf-115-131-0" data-selected="false" role="gridcell" style="background-color:var(--diffBlob-additionNum-bgColor, var(--diffBlob-addition-bgColor-num));text-align:center" tabindex="-1" valign="top" class="focusable-grid-cell diff-line-number position-relative left-side">
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,36 @@ public function getFormatter()
113113
{
114114
return $this->output->getFormatter();
115115
}
116+
117+
/**
118+
* {@inheritdoc}
119+
*/
120+
public function isQuiet()
121+
{
122+
return $this->output->isQuiet();
123+
}
124+
125+
/**
126+
* {@inheritdoc}
127+
*/
128+
public function isVerbose()
129+
{
130+
return $this->output->isVerbose();
131+
}
132+
133+
/**
134+
* {@inheritdoc}
135+
*/
136+
public function isVeryVerbose()
137+
{
138+
return $this->output->isVeryVerbose();
139+
}
140+
141+
/**
142+
* {@inheritdoc}
143+
*/
144+
public function isDebug()
145+
{
146+
return $this->output->isDebug();
147+
}
116148
}

0 commit comments

Comments
 (0)
0