summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-07-22 16:12:20 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-07-22 16:12:20 -0100
commit7c921c40f6a769d345654fca5ae5fc09738974f1 (patch)
tree370c18518617cd495a55508700a0b252815108c0
parent994126d1103017224facd24736c8db6f0d23062a (diff)
cleaning
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--lib/Command/Reset.php2
-rw-r--r--lib/Service/ConfigService.php1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php
index b70cd909..3f52b326 100644
--- a/lib/Command/Reset.php
+++ b/lib/Command/Reset.php
@@ -171,9 +171,7 @@ class Reset extends Base {
*
*/
private function uninstallWellKnown() {
- echo $this->configService->getCoreValue('public_webfinger');
if ($this->configService->getCoreValue('public_webfinger') === 'social/lib/webfinger.php') {
- echo '##@$#@$';
$this->configService->unsetCoreValue('public_webfinger');
}
if ($this->configService->getCoreValue('public_host-meta') === 'social/lib/hostmeta.php') {
diff --git a/lib/Service/ConfigService.php b/lib/Service/ConfigService.php
index 0672f7b0..267deca7 100644
--- a/lib/Service/ConfigService.php
+++ b/lib/Service/ConfigService.php
@@ -27,6 +27,7 @@ declare(strict_types=1);
*
*/
+
namespace OCA\Social\Service;
use daita\MySmallPhpTools\Traits\TArrayTools;