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
path: root/core
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2013-10-24 00:10:55 +0400
committersgiehl <stefan@piwik.org>2013-10-24 00:10:55 +0400
commit60c2e6e9724870714a0bb4b978a37a65efac3d3d (patch)
tree12cb5d58f511e6e2849e4bfe4535f05ec3907aac /core
parentc70f21f0877ef1ae1df73637c200682f6b68fbd2 (diff)
fixed doc blocks
Diffstat (limited to 'core')
-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
5 files changed, 5 insertions, 5 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
{