From aa2848cfee01dd4c30febbc4d3360427eea27167 Mon Sep 17 00:00:00 2001 From: Adphi Date: Thu, 30 Jan 2020 22:04:23 +0100 Subject: [PATCH] fix #11 --- Makefile | 4 ++++ lib/Controller/OCCOutput.php | 19 +++++++++++++------ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 6b37855..ac6bb9f 100644 --- a/Makefile +++ b/Makefile @@ -157,3 +157,7 @@ appstore: test: composer $(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.xml $(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml + +.PHONY: sign +sign: + @openssl dgst -sha512 -sign ~/.nextcloud/certificates/occweb.key build/artifacts/appstore/occweb.tar.gz |openssl base64 diff --git a/lib/Controller/OCCOutput.php b/lib/Controller/OCCOutput.php index 4359c99..d2f1829 100644 --- a/lib/Controller/OCCOutput.php +++ b/lib/Controller/OCCOutput.php @@ -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()); + } + }