1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 01:22:54 +00:00

Add IOInterface::isDecorated()

This commit is contained in:
Jordi Boggiano 2012-04-26 14:54:34 +02:00
parent 540f9a09b2
commit 66a202083e
3 changed files with 23 additions and 0 deletions

View file

@ -55,6 +55,14 @@ class ConsoleIO implements IOInterface
return $this->input->isInteractive();
}
/**
* {@inheritDoc}
*/
public function isDecorated()
{
return $this->output->isDecorated();
}
/**
* {@inheritDoc}
*/