]> git.mxchange.org Git - shipsimu.git/blobdiff - application/shipsimu/classes/user/extended/class_ShipSimuMember.php
Continued:
[shipsimu.git] / application / shipsimu / classes / user / extended / class_ShipSimuMember.php
index 0f425fa2cd6c9d7176fd5c150b4cbdf433f1247a..64a5afa1833acb8e23b5bf4493a33969032e1cae 100644 (file)
@@ -66,7 +66,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Booka
                if ($userInstance->ifUsernameExists() === false) {
                        // Throw an exception here
                        throw new UsernameMissingException(array($userInstance, $userName), self::EXCEPTION_USERNAME_NOT_FOUND);
-               } // END - if
+               }
 
                // Return the instance
                return $userInstance;
@@ -132,7 +132,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Booka
                // If there is no action use the default on
                if (is_null($lastAction)) {
                        $lastAction = $this->getConfigInstance()->getConfigEntry('login_default_action');
-               } // END - if
+               }
 
                // Get a critieria instance
                $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
@@ -184,7 +184,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Booka
 
                        // And store it in registry
                        Registry::getRegistry()->addInstance('points', $pointsInstance);
-               } // END - if
+               }
 
                // Get the amount
                $amount = $requestInstance->getRequestElement('amount');
@@ -203,7 +203,7 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Booka
                if (!$this->getResultInstance() instanceof SearchableResult) {
                        // Abort here
                        return;
-               } // END - if
+               }
 
                // Do we have data to update?
                if ($this->getResultInstance()->ifDataNeedsFlush()) {
@@ -212,6 +212,6 @@ class ShipSimuMember extends ShipSimuBaseUser implements ManageableMember, Booka
 
                        // Yes, then send the whole result to the database layer
                        $wrapperInstance->doUpdateByResult($this->getResultInstance());
-               } // END - if
+               }
        }
 }