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 'core/Site.php')
-rw-r--r--core/Site.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Site.php b/core/Site.php
index da655b9a74..b0824e77ee 100644
--- a/core/Site.php
+++ b/core/Site.php
@@ -11,7 +11,7 @@
namespace Piwik;
use Exception;
-use Piwik_Date;
+use Piwik\Date;
use Piwik_SitesManager_API;
/**
@@ -127,12 +127,12 @@ class Site
/**
* Returns the creation date of the site
*
- * @return Piwik_Date
+ * @return Date
*/
function getCreationDate()
{
$date = $this->get('ts_created');
- return Piwik_Date::factory($date);
+ return Date::factory($date);
}
/**