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/ExampleUI
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/ExampleUI')
-rw-r--r--plugins/ExampleUI/API.php5
-rw-r--r--plugins/ExampleUI/Controller.php3
-rw-r--r--plugins/ExampleUI/ExampleUI.php3
3 files changed, 1 insertions, 10 deletions
diff --git a/plugins/ExampleUI/API.php b/plugins/ExampleUI/API.php
index 3927ce5b89..9d46d77269 100644
--- a/plugins/ExampleUI/API.php
+++ b/plugins/ExampleUI/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 ExampleUI
*/
namespace Piwik\Plugins\ExampleUI;
@@ -20,7 +18,6 @@ use Piwik\Period\Range;
* The functions listed in this API are returning the data used in the Controller to draw graphs and
* display tables. See also the ExampleAPI plugin for an introduction to Piwik APIs.
*
- * @package ExampleUI
* @method static \Piwik\Plugins\ExampleUI\API getInstance()
*/
class API extends \Piwik\Plugin\API
@@ -102,4 +99,4 @@ class API extends \Piwik\Plugin\API
return $planetsDataTable;
}
-} \ No newline at end of file
+}
diff --git a/plugins/ExampleUI/Controller.php b/plugins/ExampleUI/Controller.php
index 555f2f2a88..d4dd15c3b3 100644
--- a/plugins/ExampleUI/Controller.php
+++ b/plugins/ExampleUI/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 ExampleUI
*/
namespace Piwik\Plugins\ExampleUI;
@@ -17,7 +15,6 @@ use Piwik\View;
use Piwik\ViewDataTable\Factory as ViewDataTableFactory;
/**
- * @package ExampleUI
*/
class Controller extends \Piwik\Plugin\Controller
{
diff --git a/plugins/ExampleUI/ExampleUI.php b/plugins/ExampleUI/ExampleUI.php
index b5987898c8..98a8e469ab 100644
--- a/plugins/ExampleUI/ExampleUI.php
+++ b/plugins/ExampleUI/ExampleUI.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 ExampleUI
*/
namespace Piwik\Plugins\ExampleUI;
@@ -14,7 +12,6 @@ use Piwik\Menu\MenuMain;
use Piwik\Menu\MenuTop;
/**
- * @package ExampleUI
*/
class ExampleUI extends \Piwik\Plugin
{