]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/filter/validator/class_PasswordValidatorFilter.php
Continued:
[core.git] / inc / main / classes / filter / validator / class_PasswordValidatorFilter.php
index e8c381a73bfaffe6bdfbe79e671994465ecdc7ce..2b91613ec20a7049d46fc04a67c465d26ac31c66 100644 (file)
@@ -1,11 +1,18 @@
 <?php
+// Own namespace
+namespace CoreFramework\Filter\Validator\Password;
+
+// Import framework stuff
+use CoreFramework\Request\Requestable;
+use CoreFramework\Response\Responseable;
+
 /**
  * A concrete filter for validating the password. This filter may intercept
  * the filter chain if no password is given or if both passwords didn't match.
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -36,7 +43,7 @@ class PasswordValidatorFilter extends BaseFilter implements Filterable {
        /**
         * Creates an instance of this filter class
         *
-        * @return      $filterInstance                 An instance of this filter class
+        * @return      $filterInstance         An instance of this filter class
         */
        public static final function createPasswordValidatorFilter () {
                // Get a new instance
@@ -98,7 +105,5 @@ class PasswordValidatorFilter extends BaseFilter implements Filterable {
                        throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
                } // END - elseif
        }
-}
 
-// [EOF]
-?>
+}