From c6984de76fb31f85877fb5276f065bd65d0aaadc Mon Sep 17 00:00:00 2001 From: Daniel Stainback Date: Thu, 26 Jan 2017 12:27:25 -0500 Subject: [PATCH] Fix container bug --- src/GeoIP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GeoIP.php b/src/GeoIP.php index b2df73a..4bf9c82 100644 --- a/src/GeoIP.php +++ b/src/GeoIP.php @@ -206,7 +206,7 @@ public function getService() } // Create service instance - $this->service = app($class, [$config]); + $this->service = new $class($config); } return $this->service;