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:
authorrobocoder <anthon.pang@gmail.com>2009-07-23 08:29:38 +0400
committerrobocoder <anthon.pang@gmail.com>2009-07-23 08:29:38 +0400
commitad6bc38a6c3449d14b3328b248ecdbad5ab79c15 (patch)
tree1f69ae461d2b6b4554fee06465603b455a57579e /plugins/ExampleAPI
parent6e9443696abe7506a6b5f8e647a0ab0ac8bd2b60 (diff)
Add () when instantiating classes for consistency.
git-svn-id: http://dev.piwik.org/svn/trunk@1321 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/ExampleAPI')
-rw-r--r--plugins/ExampleAPI/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ExampleAPI/API.php b/plugins/ExampleAPI/API.php
index 4c02e0b31c..bef3826de4 100644
--- a/plugins/ExampleAPI/API.php
+++ b/plugins/ExampleAPI/API.php
@@ -69,7 +69,7 @@ class Piwik_ExampleAPI_API
{
$dataTable = new Piwik_DataTable();
- $row1 = new Piwik_DataTable_Row;
+ $row1 = new Piwik_DataTable_Row();
$row1->setColumns( array('name' => 'piwik', 'license' => 'GPL'));
$dataTable->addRow($row1);