Add IOInterface::isDecorated()
parent
540f9a09b2
commit
66a202083e
|
@ -55,6 +55,14 @@ class ConsoleIO implements IOInterface
|
||||||
return $this->input->isInteractive();
|
return $this->input->isInteractive();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function isDecorated()
|
||||||
|
{
|
||||||
|
return $this->output->isDecorated();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -33,6 +33,13 @@ interface IOInterface
|
||||||
*/
|
*/
|
||||||
function isVerbose();
|
function isVerbose();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Is this output decorated?
|
||||||
|
*
|
||||||
|
* @return Boolean
|
||||||
|
*/
|
||||||
|
function isDecorated();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes a message to the output.
|
* Writes a message to the output.
|
||||||
*
|
*
|
||||||
|
|
|
@ -35,6 +35,14 @@ class NullIO implements IOInterface
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
public function isDecorated()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue