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/Menu
diff options
context:
space:
mode:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:31:19 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:31:19 +0400
commitb1ae26ddbc88bc4b729e77fcca91660480825f34 (patch)
tree7d5fbb6fda2fac8f1885a5e4a57b58fb0fd29ab3 /core/Menu
parentdc8f68acc7472de12caf2258e4d63a0e110e675a (diff)
Removing occurences of Piwik_ in core/
* @subpackage is deprecated * @package must only occur once * @package supports nesting (and can match the namespace) refs #4609
Diffstat (limited to 'core/Menu')
-rw-r--r--core/Menu/MenuAbstract.php5
-rw-r--r--core/Menu/MenuAdmin.php5
-rw-r--r--core/Menu/MenuMain.php5
-rw-r--r--core/Menu/MenuTop.php5
4 files changed, 8 insertions, 12 deletions
diff --git a/core/Menu/MenuAbstract.php b/core/Menu/MenuAbstract.php
index 6d1f47a006..583a9b448c 100644
--- a/core/Menu/MenuAbstract.php
+++ b/core/Menu/MenuAbstract.php
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
* @category Piwik
- * @package Piwik_Menu
+ * @package Piwik\Menu
*/
namespace Piwik\Menu;
@@ -21,7 +21,6 @@ use Piwik\Singleton;
* Each menu has a class that manages the menu's content. Each class invokes
* a different event to allow plugins to add new menu items.
*
- * @package Piwik_Menu
* @static \Piwik\Menu\MenuAbstract getInstance()
*/
abstract class MenuAbstract extends Singleton
@@ -262,4 +261,4 @@ abstract class MenuAbstract extends Singleton
}
return ($itemOne['_order'] < $itemTwo['_order']) ? -1 : 1;
}
-} \ No newline at end of file
+}
diff --git a/core/Menu/MenuAdmin.php b/core/Menu/MenuAdmin.php
index b303bd63c0..e725bf855c 100644
--- a/core/Menu/MenuAdmin.php
+++ b/core/Menu/MenuAdmin.php
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
* @category Piwik
- * @package Piwik_Menu
+ * @package Piwik\Menu
*/
namespace Piwik\Menu;
@@ -30,7 +30,6 @@ use Piwik\Piwik;
* );
* }
*
- * @package Piwik_Menu
* @method static \Piwik\Menu\MenuAdmin getInstance()
*/
class MenuAdmin extends MenuAbstract
@@ -108,4 +107,4 @@ class MenuAdmin extends MenuAbstract
}
return false;
}
-} \ No newline at end of file
+}
diff --git a/core/Menu/MenuMain.php b/core/Menu/MenuMain.php
index 71d1f74790..7050cf7d3d 100644
--- a/core/Menu/MenuMain.php
+++ b/core/Menu/MenuMain.php
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
* @category Piwik
- * @package Piwik_Menu
+ * @package Piwik\Menu
*/
namespace Piwik\Menu;
use Piwik\Piwik;
@@ -30,7 +30,6 @@ use Piwik\Piwik;
* );
* }
*
- * @package Piwik_Menu
* @api
* @method static \Piwik\Menu\MenuMain getInstance()
*/
@@ -91,4 +90,4 @@ class MenuMain extends MenuAbstract
}
return parent::getMenu();
}
-} \ No newline at end of file
+}
diff --git a/core/Menu/MenuTop.php b/core/Menu/MenuTop.php
index 345e504323..ba35b79795 100644
--- a/core/Menu/MenuTop.php
+++ b/core/Menu/MenuTop.php
@@ -6,7 +6,7 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
* @category Piwik
- * @package Piwik_Menu
+ * @package Piwik\Menu
*/
namespace Piwik\Menu;
use Piwik\Piwik;
@@ -31,7 +31,6 @@ use Piwik\Piwik;
* );
* }
*
- * @package Piwik_Menu
* @method static \Piwik\Menu\MenuTop getInstance()
*/
class MenuTop extends MenuAbstract
@@ -121,4 +120,4 @@ class MenuTop extends MenuAbstract
}
return parent::getMenu();
}
-} \ No newline at end of file
+}