From 16d967f7b1fab3be6eddac50341ceae436fe942f Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Tue, 26 Feb 2013 13:32:48 -0500 Subject: [PATCH] Eliminated static config\reader call. --- module/VuFind/src/VuFind/SMS/Factory.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/module/VuFind/src/VuFind/SMS/Factory.php b/module/VuFind/src/VuFind/SMS/Factory.php index 7fbbaf06033..d255136bf0f 100644 --- a/module/VuFind/src/VuFind/SMS/Factory.php +++ b/module/VuFind/src/VuFind/SMS/Factory.php @@ -26,8 +26,7 @@ * @link http://vufind.org/wiki/vufind2:developer_manual Wiki */ namespace VuFind\SMS; -use VuFind\Config\Reader as ConfigReader, - Zend\ServiceManager\ServiceLocatorInterface; +use Zend\ServiceManager\ServiceLocatorInterface; /** * Factory for instantiating SMS objects @@ -50,8 +49,8 @@ class Factory implements \Zend\ServiceManager\FactoryInterface public function createService(ServiceLocatorInterface $sm) { // Load configurations: - $mainConfig = ConfigReader::getConfig(); - $smsConfig = ConfigReader::getConfig('sms'); + $mainConfig = $sm->get('VuFind\Config')->get('config'); + $smsConfig = $sm->get('VuFind\Config')->get('sms'); // Determine SMS type: $type = isset($smsConfig->General->smsType) -- GitLab