From d9adcfe6169c6c10059a670f2ed984908eb4e105 Mon Sep 17 00:00:00 2001 From: Christian Raue Date: Wed, 23 Jul 2014 20:27:56 +0200 Subject: removed lots of trailing whitespace --- core/Menu/MenuAbstract.php | 4 ++-- core/Menu/MenuAdmin.php | 4 ++-- core/Menu/MenuTop.php | 4 ++-- core/Menu/MenuUser.php | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'core/Menu') diff --git a/core/Menu/MenuAbstract.php b/core/Menu/MenuAbstract.php index 3c3fd4e013..baf5c659cb 100644 --- a/core/Menu/MenuAbstract.php +++ b/core/Menu/MenuAbstract.php @@ -16,11 +16,11 @@ use Piwik\Plugin\Manager as PluginManager; /** * Base class for classes that manage one of Piwik's menus. - * + * * There are three menus in Piwik, the main menu, the top menu and the admin menu. * 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. - * + * * @static \Piwik\Menu\MenuAbstract getInstance() */ abstract class MenuAbstract extends Singleton diff --git a/core/Menu/MenuAdmin.php b/core/Menu/MenuAdmin.php index cff021bb56..5c814b6706 100644 --- a/core/Menu/MenuAdmin.php +++ b/core/Menu/MenuAdmin.php @@ -14,7 +14,7 @@ use Piwik\Piwik; * Contains menu entries for the Admin menu. * Plugins can implement the `configureAdminMenu()` method of the `Menu` plugin class to add, rename of remove * items. If your plugin does not have a `Menu` class yet you can create one using `./console generate:menu`. - * + * * **Example** * * public function configureAdminMenu(MenuAdmin $menu) @@ -27,7 +27,7 @@ use Piwik\Piwik; * $order = 2 * ); * } - * + * * @method static \Piwik\Menu\MenuAdmin getInstance() */ class MenuAdmin extends MenuAbstract diff --git a/core/Menu/MenuTop.php b/core/Menu/MenuTop.php index 2901c82fe6..86fc1ab0c6 100644 --- a/core/Menu/MenuTop.php +++ b/core/Menu/MenuTop.php @@ -14,7 +14,7 @@ use Piwik\Piwik; * Contains menu entries for the Top menu (the menu at the very top of the page). * Plugins can implement the `configureTopMenu()` method of the `Menu` plugin class to add, rename of remove * items. If your plugin does not have a `Menu` class yet you can create one using `./console generate:menu`. - * + * * **Example** * * public function configureTopMenu(MenuTop $menu) @@ -27,7 +27,7 @@ use Piwik\Piwik; * $order = 2 * ); * } - * + * * @method static \Piwik\Menu\MenuTop getInstance() */ class MenuTop extends MenuAbstract diff --git a/core/Menu/MenuUser.php b/core/Menu/MenuUser.php index 6cbd9be7fe..ad9b195d46 100755 --- a/core/Menu/MenuUser.php +++ b/core/Menu/MenuUser.php @@ -12,7 +12,7 @@ namespace Piwik\Menu; * Contains menu entries for the User menu (the menu at the very top of the page). * Plugins can implement the `configureUserMenu()` method of the `Menu` plugin class to add, rename of remove * items. If your plugin does not have a `Menu` class yet you can create one using `./console generate:menu`. - * + * * **Example** * * public function configureUserMenu(MenuUser $menu) @@ -25,7 +25,7 @@ namespace Piwik\Menu; * $order = 2 * ); * } - * + * * @method static \Piwik\Menu\MenuUser getInstance() */ class MenuUser extends MenuAbstract -- cgit v1.2.3