Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MobileMessaging/SMSProvider.php')
-rw-r--r--plugins/MobileMessaging/SMSProvider.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/MobileMessaging/SMSProvider.php b/plugins/MobileMessaging/SMSProvider.php
index 6abc527dcb..402c135b48 100644
--- a/plugins/MobileMessaging/SMSProvider.php
+++ b/plugins/MobileMessaging/SMSProvider.php
@@ -8,6 +8,7 @@
* @category Piwik_Plugins
* @package Piwik_MobileMessaging
*/
+use Piwik\Loader;
/**
* The Piwik_MobileMessaging_SMSProvider abstract class is used as a base class for SMS provider implementations.
@@ -49,7 +50,7 @@ abstract class Piwik_MobileMessaging_SMSProvider
$className = 'Piwik_MobileMessaging_SMSProvider_' . $providerName;
try {
- Piwik_Loader::loadClass($className);
+ Loader::loadClass($className);
return new $className;
} catch (Exception $e) {
throw new Exception(