From 5104d94f3b2250f766b9c520e2da8da9b4cab2e9 Mon Sep 17 00:00:00 2001 From: mattab Date: Tue, 23 Jul 2013 09:52:15 +0200 Subject: Refs #4059 Work in progress: Conversion to use Namespaces of dozen more classes Removed many Piwik_ functions, in Piwik 2 it is best practise to use the methods calls instead Todo: finish converting core/ classes + convert plugins/ classes to use \Piwik\Plugin namespace + fix build + Merge master --- core/Updates.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'core/Updates.php') diff --git a/core/Updates.php b/core/Updates.php index e4387d0634..9f5e7ab1ee 100644 --- a/core/Updates.php +++ b/core/Updates.php @@ -8,6 +8,8 @@ * @category Piwik * @package Piwik */ +namespace Piwik; + use Piwik\Config; /** @@ -16,7 +18,7 @@ use Piwik\Config; * @example core/Updates/0.4.2.php * @package Piwik */ -abstract class Piwik_Updates +abstract class Updates { /** * Return SQL to be executed in this update @@ -87,7 +89,6 @@ abstract class Piwik_Updates $config->forceSave(); } - public static function deletePluginFromConfigFile($pluginToDelete) { $config = Config::getInstance(); @@ -108,6 +109,4 @@ abstract class Piwik_Updates $config->forceSave(); } } - - } -- cgit v1.2.3