From 74a743fb3a67882be2a76dcf8df54c9020572cf0 Mon Sep 17 00:00:00 2001 From: Bradley Weston Date: Wed, 13 May 2020 09:54:10 +0100 Subject: [PATCH] fix: remove trailing comma causing syntax errors --- src/SettingsManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SettingsManager.php b/src/SettingsManager.php index 59a60ed..004280a 100644 --- a/src/SettingsManager.php +++ b/src/SettingsManager.php @@ -68,7 +68,7 @@ protected function wrapDriver($store) $store->setCache( $this->app['cache'], $this->getConfig('anlutro/l4-settings::cacheTtl'), - $this->getConfig('anlutro/l4-settings::forgetCacheByWrite'), + $this->getConfig('anlutro/l4-settings::forgetCacheByWrite') ); }