Skip to content

Commit

Permalink
[Console] [OutputStyle] Implements verbosity methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ogizanagi committed Apr 5, 2015
1 parent 6a0b617 commit a30f507
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/Symfony/Component/Console/Style/OutputStyle.php
Expand Up @@ -113,4 +113,36 @@ public function getFormatter()
{
return $this->output->getFormatter();
}

/**
* {@inheritdoc}
*/
public function isQuiet()
{
return $this->output->isQuiet();
}

/**
* {@inheritdoc}
*/
public function isVerbose()
{
return $this->output->isVerbose();
}

/**
* {@inheritdoc}
*/
public function isVeryVerbose()
{
return $this->output->isVeryVerbose();
}

/**
* {@inheritdoc}
*/
public function isDebug()
{
return $this->output->isDebug();
}
}

0 comments on commit a30f507

Please sign in to comment.