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:
authorThomas Steur <thomas.steur@googlemail.com>2014-08-11 21:46:22 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-11 21:46:22 +0400
commit9676a4a2cd0a97550bf9034f2035b196ebfcc90a (patch)
tree569bc4dbff4c6ed2de33a1f7b836de6cd340ea3a /plugins
parent4a74df465717657a6d3c3d8186d1b84454f7781a (diff)
refs #5820 fixes some more classes and looks like reportTest needs to be a database testcase as a random method is calling TaskScheduler which requires a DB
Diffstat (limited to 'plugins')
-rw-r--r--plugins/DevicesDetection/Reports/GetBrand.php4
-rw-r--r--plugins/DevicesDetection/Reports/GetBrowserVersions.php4
-rw-r--r--plugins/DevicesDetection/Reports/GetModel.php4
-rw-r--r--plugins/DevicesDetection/Reports/GetType.php4
4 files changed, 8 insertions, 8 deletions
diff --git a/plugins/DevicesDetection/Reports/GetBrand.php b/plugins/DevicesDetection/Reports/GetBrand.php
index 3cc7cc23dd..b76eb35c7c 100644
--- a/plugins/DevicesDetection/Reports/GetBrand.php
+++ b/plugins/DevicesDetection/Reports/GetBrand.php
@@ -10,14 +10,14 @@ namespace Piwik\Plugins\DevicesDetection\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
-use Piwik\Plugins\DevicesDetection\Columns\Devicebrand;
+use Piwik\Plugins\DevicesDetection\Columns\DeviceBrand;
class GetBrand extends Base
{
protected function init()
{
parent::init();
- $this->dimension = new Devicebrand();
+ $this->dimension = new DeviceBrand();
$this->name = Piwik::translate('DevicesDetection_DeviceBrand');
$this->documentation = ''; // TODO
$this->order = 1;
diff --git a/plugins/DevicesDetection/Reports/GetBrowserVersions.php b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
index b66b94e561..22105ff8ac 100644
--- a/plugins/DevicesDetection/Reports/GetBrowserVersions.php
+++ b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
@@ -10,14 +10,14 @@ namespace Piwik\Plugins\DevicesDetection\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
-use Piwik\Plugins\DevicesDetection\Columns\Browserversion;
+use Piwik\Plugins\DevicesDetection\Columns\BrowserVersion;
class GetBrowserVersions extends Base
{
protected function init()
{
parent::init();
- $this->dimension = new Browserversion();
+ $this->dimension = new BrowserVersion();
$this->name = Piwik::translate('DevicesDetection_BrowserVersions');
$this->documentation = ''; // TODO
$this->order = 6;
diff --git a/plugins/DevicesDetection/Reports/GetModel.php b/plugins/DevicesDetection/Reports/GetModel.php
index 0a99c891a4..70fa3a0005 100644
--- a/plugins/DevicesDetection/Reports/GetModel.php
+++ b/plugins/DevicesDetection/Reports/GetModel.php
@@ -10,14 +10,14 @@ namespace Piwik\Plugins\DevicesDetection\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
-use Piwik\Plugins\DevicesDetection\Columns\Devicemodel;
+use Piwik\Plugins\DevicesDetection\Columns\DeviceModel;
class GetModel extends Base
{
protected function init()
{
parent::init();
- $this->dimension = new Devicemodel();
+ $this->dimension = new DeviceModel();
$this->name = Piwik::translate('DevicesDetection_DeviceModel');
$this->documentation = ''; // TODO
$this->order = 2;
diff --git a/plugins/DevicesDetection/Reports/GetType.php b/plugins/DevicesDetection/Reports/GetType.php
index 4861d12ee5..4529549148 100644
--- a/plugins/DevicesDetection/Reports/GetType.php
+++ b/plugins/DevicesDetection/Reports/GetType.php
@@ -10,14 +10,14 @@ namespace Piwik\Plugins\DevicesDetection\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
-use Piwik\Plugins\DevicesDetection\Columns\Devicetype;
+use Piwik\Plugins\DevicesDetection\Columns\DeviceType;
class GetType extends Base
{
protected function init()
{
parent::init();
- $this->dimension = new Devicetype();
+ $this->dimension = new DeviceType();
$this->name = Piwik::translate('DevicesDetection_DeviceType');
$this->documentation = ''; // TODO
$this->order = 0;