From d4bdbcd937b8e6968a03e0b5eefedc7fb6351bf0 Mon Sep 17 00:00:00 2001 From: Arne Blankerts Date: Tue, 9 Jan 2018 09:32:47 +0100 Subject: [PATCH] remove var_dump --- src/config/ProjectConfig.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/config/ProjectConfig.php b/src/config/ProjectConfig.php index a0d328cf..fb3d4246 100644 --- a/src/config/ProjectConfig.php +++ b/src/config/ProjectConfig.php @@ -100,11 +100,6 @@ public function getSourceDirectory() { * @return bool */ public function isPublicOnlyMode() { - var_dump( - $this->ctx->saveXML(), - $this->ctx->getAttribute('publiconly', 'false'), - $this->ctx->getAttribute('publiconly', 'false') === 'true' - ); return $this->ctx->getAttribute('publiconly', 'false') === 'true'; }