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:
-rw-r--r--core/DataTable/Manager.php2
-rw-r--r--core/Db/Schema.php2
-rw-r--r--core/EventDispatcher.php2
-rw-r--r--core/Log.php2
-rw-r--r--core/Registry.php2
-rw-r--r--plugins/Goals/API.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/core/DataTable/Manager.php b/core/DataTable/Manager.php
index 3613f70ee8..0b10c1fc49 100644
--- a/core/DataTable/Manager.php
+++ b/core/DataTable/Manager.php
@@ -23,7 +23,7 @@ use Piwik\Singleton;
*
* @package Piwik
* @subpackage DataTable
- * @method \Piwik\DataTable\Manager getInstance()
+ * @method static \Piwik\DataTable\Manager getInstance()
*/
class Manager extends Singleton
{
diff --git a/core/Db/Schema.php b/core/Db/Schema.php
index 9fc6283c58..e94547c087 100644
--- a/core/Db/Schema.php
+++ b/core/Db/Schema.php
@@ -20,7 +20,7 @@ use Piwik\Singleton;
*
* @package Piwik
* @subpackage Piwik_Db
- * @method \Piwik\Db\Schema getInstance()
+ * @method static \Piwik\Db\Schema getInstance()
*/
class Schema extends Singleton
{
diff --git a/core/EventDispatcher.php b/core/EventDispatcher.php
index 642aaee3f7..670269862a 100644
--- a/core/EventDispatcher.php
+++ b/core/EventDispatcher.php
@@ -17,7 +17,7 @@ use Piwik\Plugin;
* This class allows code to post events from anywhere in Piwik and for
* plugins to associate callbacks to be executed when events are posted.
*
- * @method \Piwik\EventDispatcher getInstance()
+ * @method static \Piwik\EventDispatcher getInstance()
*/
class EventDispatcher extends Singleton
{
diff --git a/core/Log.php b/core/Log.php
index 3c3d06eb89..40ac327f54 100644
--- a/core/Log.php
+++ b/core/Log.php
@@ -75,7 +75,7 @@ use Piwik\Db;
* Log::verbose("This log message uses %s params, but %s will only be called if the"
* . " configured log level includes %s.", "sprintf", "sprintf", "verbose");
*
- * @method \Piwik\Log getInstance()
+ * @method static \Piwik\Log getInstance()
*/
class Log extends Singleton
{
diff --git a/core/Registry.php b/core/Registry.php
index 12ed1d963c..ffb4d89bc5 100644
--- a/core/Registry.php
+++ b/core/Registry.php
@@ -14,7 +14,7 @@ namespace Piwik;
* Registry class.
*
* @package Piwik
- * @method \Piwik\Registry getInstance()
+ * @method static \Piwik\Registry getInstance()
*/
class Registry extends Singleton
{
diff --git a/plugins/Goals/API.php b/plugins/Goals/API.php
index 5ad1bc28dc..c5b7d3bc6c 100644
--- a/plugins/Goals/API.php
+++ b/plugins/Goals/API.php
@@ -40,7 +40,7 @@ use Piwik\Tracker\GoalManager;
* See also the documentation about <a href='http://piwik.org/docs/tracking-goals-web-analytics/' target='_blank'>Tracking Goals</a> in Piwik.
*
* @package Goals
- * @method \Piwik\Plugins\Goals\API getInstance()
+ * @method static \Piwik\Plugins\Goals\API getInstance()
*/
class API extends \Piwik\Plugin\API
{