*
* @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();
* @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();
* @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();
*
* @return $menuInstance An instance of this class
*/
- public final static function createInstallHomeMenu () {
+ public static final function createInstallHomeMenu () {
// Get a new instance
$menuInstance = new InstallHomeMenu();