]> git.mxchange.org Git - install.git/commitdiff
'public static final' is correct
authorRoland Häder <roland@mxchange.org>
Mon, 28 Feb 2011 00:13:39 +0000 (00:13 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 28 Feb 2011 00:13:39 +0000 (00:13 +0000)
application/install/class_ApplicationHelper.php
application/install/main/commands/web/failed/class_WebInstallFailedCommand.php
application/install/main/controller/web/class_WebInstallFailedController.php
application/install/main/menu/class_InstallHomeMenu.php

index f8afc85e4a171d4a51516d2613cb2f0f50ac0c2c..49939771c650ae3b868106a470668706f39d589c 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 7ef28578528080b2d9fd75745c0e56c7771f26b2..d90e2f1372f81342c068cd0f7770fa3cd23f53e4 100644 (file)
@@ -38,7 +38,7 @@ class WebInstallFailedCommand extends BaseCommand implements Commandable {
         * @param       $resolverInstance       An instance of a command resolver class
         * @return      $commandInstance        An instance a prepared command class
         */
-       public final static function createWebInstallFailedCommand (CommandResolver $resolverInstance) {
+       public static final function createWebInstallFailedCommand (CommandResolver $resolverInstance) {
                // Get new instance
                $commandInstance = new WebInstallFailedCommand();
 
index 239625479fb171ead61914b3fe9d531d415ef999..7168acb1e9a4b802ad78e989557465a5f4a8da74 100644 (file)
@@ -39,7 +39,7 @@ class WebInstallFailedController extends BaseController implements Controller {
         * @return      $controllerInstance             A prepared instance of this class
         * @todo        Add some filters to this controller
         */
-       public final static function createWebInstallFailedController (CommandResolver $resolverInstance) {
+       public static final function createWebInstallFailedController (CommandResolver $resolverInstance) {
                // Create the instance
                $controllerInstance = new WebInstallFailedController();
 
index e4e3d2825f637313a589b7210e5c22654d1a9fd5..b0bfd45b9d44e28512f34addd381bd40dbc7d20d 100644 (file)
@@ -37,7 +37,7 @@ class InstallHomeMenu extends BaseMenu implements RenderableMenu {
         *
         * @return      $menuInstance   An instance of this class
         */
-       public final static function createInstallHomeMenu () {
+       public static final function createInstallHomeMenu () {
                // Get a new instance
                $menuInstance = new InstallHomeMenu();