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