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:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
commit6b9ae92360cdd006cb3fc283ad2526e0ce9e1b34 (patch)
treee813ea3420b8199a8de8b2fe6d95f99b5ea69d86 /plugins/Annotations
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/Annotations')
-rwxr-xr-xplugins/Annotations/API.php3
-rwxr-xr-xplugins/Annotations/AnnotationList.php3
-rwxr-xr-xplugins/Annotations/Annotations.php3
-rwxr-xr-xplugins/Annotations/Controller.php3
4 files changed, 0 insertions, 12 deletions
diff --git a/plugins/Annotations/API.php b/plugins/Annotations/API.php
index fe2cdba8e1..35445cc304 100755
--- a/plugins/Annotations/API.php
+++ b/plugins/Annotations/API.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Annotations
*/
namespace Piwik\Plugins\Annotations;
@@ -27,7 +25,6 @@ require_once PIWIK_INCLUDE_PATH . '/plugins/Annotations/AnnotationList.php';
* API for annotations plugin. Provides methods to create, modify, delete & query
* annotations.
*
- * @package Annotations
* @method static \Piwik\Plugins\Annotations\API getInstance()
*/
class API extends \Piwik\Plugin\API
diff --git a/plugins/Annotations/AnnotationList.php b/plugins/Annotations/AnnotationList.php
index 2ee58cffb3..0ba595b8a0 100755
--- a/plugins/Annotations/AnnotationList.php
+++ b/plugins/Annotations/AnnotationList.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Annotations
*/
namespace Piwik\Plugins\Annotations;
@@ -31,7 +29,6 @@ use Piwik\Site;
* an annotation for the same site, it's possible one of their changes will
* never get made (as it will be overwritten by the other's).
*
- * @package Annotations
*/
class AnnotationList
{
diff --git a/plugins/Annotations/Annotations.php b/plugins/Annotations/Annotations.php
index 5457dc89bb..483b9f165c 100755
--- a/plugins/Annotations/Annotations.php
+++ b/plugins/Annotations/Annotations.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Annotations
*/
namespace Piwik\Plugins\Annotations;
@@ -14,7 +12,6 @@ namespace Piwik\Plugins\Annotations;
* Annotations plugins. Provides the ability to attach text notes to
* dates for each sites. Notes can be viewed, modified, deleted or starred.
*
- * @package Annotations
*/
class Annotations extends \Piwik\Plugin
{
diff --git a/plugins/Annotations/Controller.php b/plugins/Annotations/Controller.php
index f43b50480e..616da88ec1 100755
--- a/plugins/Annotations/Controller.php
+++ b/plugins/Annotations/Controller.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package Annotations
*/
namespace Piwik\Plugins\Annotations;
@@ -18,7 +16,6 @@ use Piwik\View;
/**
* Controller for the Annotations plugin.
*
- * @package Annotations
*/
class Controller extends \Piwik\Plugin\Controller
{