From 570a60240d49c311d88bfda754fa023a78cf2a7a Mon Sep 17 00:00:00 2001 From: Nicolas Widart Date: Sat, 7 May 2016 16:53:52 +0200 Subject: [PATCH] Removing comment --- Support/Settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Support/Settings.php b/Support/Settings.php index 1a2f558..a5ee6f5 100644 --- a/Support/Settings.php +++ b/Support/Settings.php @@ -29,7 +29,7 @@ public function get($name, $locale = null, $default = null) { $defaultFromConfig = $this->getDefaultFromConfigFor($name); - $setting = $this->setting->findByName($name); //before that change I could not fetch any setting!!! + $setting = $this->setting->findByName($name); if (! $setting) { return is_null($default) ? $defaultFromConfig : $default; }