From 5bd853d96b985b551e8f4e8ca665223a17c8fde0 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 19 Aug 2021 16:11:32 +0200 Subject: [PATCH] Revert "Remove obsolete controller." This reverts commit 494573e5b4122cdd93e9890599729ddbc85c00be. --- .../ChillWopiBundle/src/Controller/Test.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/Bundle/ChillWopiBundle/src/Controller/Test.php diff --git a/src/Bundle/ChillWopiBundle/src/Controller/Test.php b/src/Bundle/ChillWopiBundle/src/Controller/Test.php new file mode 100644 index 000000000..ed7cf9c00 --- /dev/null +++ b/src/Bundle/ChillWopiBundle/src/Controller/Test.php @@ -0,0 +1,30 @@ +client = $client; + } + + public function __invoke() + { + dump($this->client); + + return new Response('fobar'); + } +}