]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/filter/verifier/class_AccountPasswordVerifierFilter.php
Continued:
[core.git] / framework / main / classes / filter / verifier / class_AccountPasswordVerifierFilter.php
index d0a5da9775333dafa1d5aa55d0db606a11fe15eb..1fd67958854f2bfd81d7973547233a282afe7759 100644 (file)
@@ -88,8 +88,8 @@ class AccountPasswordVerifierFilter extends BaseFilter implements Filterable {
 
                                // Abort here
                                throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
-                       } // END - if
-               } // END - if
+                       }
+               }
 
                if (empty($password)) {
                        // Password is empty
@@ -100,7 +100,7 @@ class AccountPasswordVerifierFilter extends BaseFilter implements Filterable {
 
                        // Abort here
                        throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
-               } // END - if
+               }
 
                // Get a user instance
                $userInstance = GenericRegistry::getRegistry()->getInstance('user');
@@ -115,7 +115,7 @@ class AccountPasswordVerifierFilter extends BaseFilter implements Filterable {
                if ($currentHash != $passHash) {
                        // Throw an exception here to stop the proccessing
                        throw new AccountPasswordMismatchException($this, BaseUser::EXCEPTION_USER_PASS_MISMATCH);
-               } // END - if
+               }
        }
 
 }