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/View
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:48:45 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:48:45 +0400
commitf9d52ca9433e33783e59b209554dfba58f30cec4 (patch)
treeb2c5e79859dbd29d89e102921739bb2f2459a753 /core/View
parentb1ae26ddbc88bc4b729e77fcca91660480825f34 (diff)
Remove all occurences of @package / @subpackage / @category from core/ files.
refs #4609
Diffstat (limited to 'core/View')
-rw-r--r--core/View/OneClickDone.php3
-rw-r--r--core/View/ReportsByDimension.php4
-rw-r--r--core/View/ViewInterface.php5
3 files changed, 2 insertions, 10 deletions
diff --git a/core/View/OneClickDone.php b/core/View/OneClickDone.php
index 4e898e1ff7..afb4b05f40 100644
--- a/core/View/OneClickDone.php
+++ b/core/View/OneClickDone.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
- * @package Piwik
*/
namespace Piwik\View;
@@ -21,7 +19,6 @@ namespace Piwik\View;
*
* This class needs to be self-contained, with no external dependencies.
*
- * @package Piwik
*/
class OneClickDone
{
diff --git a/core/View/ReportsByDimension.php b/core/View/ReportsByDimension.php
index c3a298f588..f75e240a92 100644
--- a/core/View/ReportsByDimension.php
+++ b/core/View/ReportsByDimension.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
- * @package SmartyPlugins
*/
namespace Piwik\View;
@@ -128,4 +126,4 @@ class ReportsByDimension extends View
return parent::render();
}
-} \ No newline at end of file
+}
diff --git a/core/View/ViewInterface.php b/core/View/ViewInterface.php
index 1eaeb2e27d..b1e6133903 100644
--- a/core/View/ViewInterface.php
+++ b/core/View/ViewInterface.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
- * @package Piwik
*/
namespace Piwik\View;
@@ -14,7 +12,6 @@ namespace Piwik\View;
/**
* Rendering interface for all "view" types.
*
- * @package Piwik
* @api
*/
interface ViewInterface
@@ -25,4 +22,4 @@ interface ViewInterface
* @return string Serialized data, eg, (image, array, html...).
*/
function render();
-} \ No newline at end of file
+}