]> git.mxchange.org Git - admin.git/commitdiff
'public static final' is correct
authorRoland Häder <roland@mxchange.org>
Mon, 28 Feb 2011 00:12:37 +0000 (00:12 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 28 Feb 2011 00:12:37 +0000 (00:12 +0000)
application/admin/class_ApplicationHelper.php
application/admin/main/actions/web/class_WebAdminLoginWelcomeAction.php
application/admin/main/commands/web/class_WebAdminUserLoginCommand.php
application/admin/main/login/class_AdminUserLogin.php
application/admin/main/login/helper/class_AdminLoginHelper.php
application/admin/main/menu/class_AdminHomeMenu.php

index f3d4dbf30eb94c5d03bd4de64ec14cb53c60b831..3b1e01eea951c178c0531cf23b4de7d199d2b92b 100644 (file)
@@ -80,7 +80,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
         *
         * @return      $thisInstance           An instance of this class
         */
-       public final static function getInstance () {
+       public static final function getInstance () {
                // Is the instance there?
                if (is_null(self::$thisInstance)) {
                        self::$thisInstance = new ApplicationHelper();
index de17170baffcb38f96f7cd0be4dcdebc20421d7f..a5fb8f0b40170160249dc0a7ea20f96b5ceb8fff 100644 (file)
@@ -37,7 +37,7 @@ class WebAdminLoginWelcomeAction extends BaseAction implements PerformableAction
         *
         * @return      $actionInstance         An instance of this action class
         */
-       public final static function createWebAdminLoginWelcomeAction () {
+       public static final function createWebAdminLoginWelcomeAction () {
                // Get a new instance
                $actionInstance = new WebAdminLoginWelcomeAction();
 
index c9e63e767533d5823ce7986e69d7e8a5959bb70c..9d6f7d8d25ce6c1269becf5856b2090c0a396d45 100644 (file)
@@ -38,7 +38,7 @@ class WebAdminUserLoginCommand extends BaseCommand implements Commandable {
         * @param       $resolverInstance       An instance of a command resolver
         * @return      $commandInstance        The created command instance
         */
-       public final static function createWebAdminUserLoginCommand (CommandResolver $resolverInstance) {
+       public static final function createWebAdminUserLoginCommand (CommandResolver $resolverInstance) {
                // Get a new instance
                $commandInstance = new WebAdminUserLoginCommand();
 
index f10d4e4ad4e9ad53f0b4547bbec041b596e367c9..cba2a30b7217b6cd2c9c780864097a4a656a9887 100644 (file)
@@ -42,7 +42,7 @@ class AdminUserLogin extends BaseFrameworkSystem implements LoginableUser {
         *
         * @return      $loginInstance  An instance of this login class
         */
-       public final static function createAdminUserLogin () {
+       public static final function createAdminUserLogin () {
                // Get a new instance
                $loginInstance = new AdminUserLogin();
 
index d54d400530602f915008680da53798d8d73ced61..c5244d4c1f42e21043cbc570614bd618df4c166d 100644 (file)
@@ -56,7 +56,7 @@ class AdminLoginHelper extends BaseLoginHelper implements HelpableLogin {
         * @throws      UserInstanceMissingException    If the user instance in registry
         *                                                                                      is missing or invalid
         */
-       public final static function createAdminLoginHelper (Requestable $requestInstance) {
+       public static final function createAdminLoginHelper (Requestable $requestInstance) {
                // Get a new instance first
                $helperInstance = new AdminLoginHelper();
 
index 55264a65244cf6e74ec7085eb46401daf32d4a12..5856825726887fc57beed3ef9496723ae43fb06a 100644 (file)
@@ -37,7 +37,7 @@ class AdminHomeMenu extends BaseMenu implements RenderableMenu {
         *
         * @return      $menuInstance   An instance of this class
         */
-       public final static function createAdminHomeMenu () {
+       public static final function createAdminHomeMenu () {
                // Get a new instance
                $menuInstance = new AdminHomeMenu();