From 3d92af816ba018a239703ef1861693c839be1274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emin=20=C5=9Een?= Date: Sun, 1 Mar 2015 22:41:28 +0200 Subject: [PATCH] update config path ObjectConfig and PluginCollection traits config paths update. --- src/Parser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Parser.php b/src/Parser.php index fb330e8..c661803 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -74,10 +74,10 @@ public function __construct(Application $app) $this->app = $app; // Import the package configuration to the parser object. - $this->objectConfigImport(config('browser-detect-config')); + $this->objectConfigImport(config('hisorange.browser-detect.browser-detect-config')); // Import the plugins. - $this->pluginCollectionImport(config('browser-detect-plugins')); + $this->pluginCollectionImport(config('hisorange.browser-detect.browser-detect-plugins')); } /**