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/ExampleAPI
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/ExampleAPI')
-rw-r--r--plugins/ExampleAPI/API.php6
-rw-r--r--plugins/ExampleAPI/ExampleAPI.php5
2 files changed, 2 insertions, 9 deletions
diff --git a/plugins/ExampleAPI/API.php b/plugins/ExampleAPI/API.php
index 3972fb82e2..638238350c 100644
--- a/plugins/ExampleAPI/API.php
+++ b/plugins/ExampleAPI/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 Piwik_ExampleAPI
*/
namespace Piwik\Plugins\ExampleAPI;
@@ -19,7 +17,6 @@ use Piwik\Version;
* The ExampleAPI is useful to developers building a custom Piwik plugin.
*
* Please see the <a href='http://dev.piwik.org/trac/browser/trunk/plugins/ExampleAPI/API.php#L1' target='_blank'>source code in in the file plugins/ExampleAPI/API.php</a> for more documentation.
- * @package Piwik_ExampleAPI
* @method static \Piwik\Plugins\ExampleAPI\API getInstance()
*/
class API extends \Piwik\Plugin\API
@@ -149,7 +146,6 @@ class API extends \Piwik\Plugin\API
/**
* Magic Object
*
- * @package ExamplePlugin
*/
class MagicObject
{
@@ -160,4 +156,4 @@ class MagicObject
protected $wonderful = 'magnifique';
public $great = 'formidable';
-} \ No newline at end of file
+}
diff --git a/plugins/ExampleAPI/ExampleAPI.php b/plugins/ExampleAPI/ExampleAPI.php
index f9e8475220..3d38b3a3f8 100644
--- a/plugins/ExampleAPI/ExampleAPI.php
+++ b/plugins/ExampleAPI/ExampleAPI.php
@@ -5,17 +5,14 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ExampleAPI
*/
namespace Piwik\Plugins\ExampleAPI;
/**
* This plugin only provides an API.php file, so we leave the plugin class empty
*
- * @package ExamplePlugin
*/
class ExampleAPI extends \Piwik\Plugin
{
-} \ No newline at end of file
+}