|
|
|
@ -8,12 +8,12 @@ use Symfony\Component\Console\Output\ConsoleOutputInterface;
|
|
|
|
|
use Symfony\Component\Console\Output\ConsoleSectionOutput;
|
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @method ConsoleSectionOutput section()
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class OccOutput extends BufferedOutput implements ConsoleOutputInterface
|
|
|
|
|
{
|
|
|
|
|
private $consoleSectionOutputs = [];
|
|
|
|
|
|
|
|
|
|
private $stream;
|
|
|
|
|
/**
|
|
|
|
|
* Gets the OutputInterface for errors.
|
|
|
|
|
*
|
|
|
|
@ -30,7 +30,14 @@ class OccOutput extends BufferedOutput implements ConsoleOutputInterface
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// public function __call($name, $arguments) {
|
|
|
|
|
// // TODO: Implement @method ConsoleSectionOutput section()
|
|
|
|
|
// }
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new output section.
|
|
|
|
|
*/
|
|
|
|
|
public function section(): ConsoleSectionOutput {
|
|
|
|
|
if ($this->stream === null) {
|
|
|
|
|
$this->stream = fopen('php://temp','w');
|
|
|
|
|
}
|
|
|
|
|
return new ConsoleSectionOutput($this->stream, $this->consoleSectionOutputs, $this->getVerbosity(), $this->isDecorated(), $this->getFormatter());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|